4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 2 / 3
Newer►
44 results tagged nginx x
  • Nginx with dynamic upstreams - Tenzer.dk
    July 27, 2015 at 4:39:58 PM GMT+2 - permalink - archive.org - http://tenzer.dk/nginx-with-dynamic-upstreams/
    nginx upstream
  • nginx + unicorn + performance tweaks
    May 13, 2015 at 11:33:43 AM GMT+2 - permalink - archive.org - http://vstark.net/2012/10/21/nginx-unicorn-performance-tweaks/
    nginx unicorn
  • Kong - Open-Source API Management Layer
    April 29, 2015 at 11:45:46 AM GMT+2 - permalink - archive.org - http://getkong.org/
    api nginx
  • Debian -- Details of package libapache2-mod-rpaf in sid

    Je me demandais pourquoi mes allow from x.x.x.x ne marchait plus au niveau de on apache... C'est pourtant con, j'ai un haproxy en frontal maintenant ! donc apache voit tout venir de 127.0.0.1 et les allow ne sont plus valides.

    Pour résoudre le probleme on peut installer ce mod qui va prendre l'ip dans les headers ajoutés par haproxy (x-forwarded-for) et la considérer comme l'ip source.

    February 21, 2015 at 2:35:05 PM GMT+1 - permalink - archive.org - https://packages.debian.org/fr/sid/libapache2-mod-rpaf
    apache haproxy nginx rpaf
  • How nginx processes a request
    January 1, 2015 at 2:51:23 PM GMT+1 - permalink - archive.org - http://nginx.org/en/docs/http/request_processing.html
    nginx
  • rate limiting

    rsyslog intègre une limitation soft pour ne pas pourrir les IO en cas de mass logs non voulus

    Dans certains cas les valeurs par défaut sont un peu faible, suffit de les up un peu en surveillant les io disk ;)

    November 19, 2014 at 4:07:18 PM GMT+1 - permalink - archive.org - http://www.rsyslog.com/tag/rate-limiting/
    io nginx
  • thumbnail
    Faire suivre les messages Rsyslog vers Logstash - Wooster

    Pas con le coup de bien formater les logs pour que logstash ait moins de boulot de parsing de son côté.

    November 6, 2014 at 9:51:07 PM GMT+1 - permalink - archive.org - https://wooster.checkmy.ws/2014/07/rsyslog-json-logstash/
    logstash nginx
  • Enable Nginx Status Page

    le server-status de nginx : comment interpréter l'output

    Interpretation

    Active connections – Number of all open connections. This doesn’t mean number of users. A single user, for a single pageview can open many concurrent connections to your server.
    Server accepts handled requests – This shows three values.
        First is total accepted connections.
        Second is total handled connections. Usually first 2 values are same.
        Third value is number of and handles requests. This is usually greater than second value.
        Dividing third-value by second-one will give you number of requests per connection handled by Nginx. In above example, 10993/7368, 1.49 requests per connections.
    Reading – nginx reads request header
    Writing – nginx reads request body, processes request, or writes response to a client
    Waiting – keep-alive connections, actually it is active – (reading + writing).This value depends on keepalive-timeout. Do not confuse non-zero waiting value for poor performance. It can be ignored. Although, you can force zero waiting by setting keepalive_timeout 0;
    October 6, 2014 at 2:29:14 PM GMT+2 - permalink - archive.org - https://rtcamp.com/tutorials/nginx/status-page/
    nginx server-status status
  • Nginx modules by flavour
    July 18, 2014 at 3:36:32 PM GMT+2 - permalink - archive.org - https://docs.google.com/spreadsheet/ccc?key=0AjuNPnOoex7SdG5fUkhfc3BCSjJQbVVrQTg4UGU2YVE#gid=0
    dotdeb module nginx
  • thumbnail
    More Puppet Offloading - Masterzen's Blog

    Une solution pour cacher la demande de catalogue..
    Dans cet article il ne parle pas de cacher les demande de metadata, mais c'est aussi une bonne idée.
    Pour que ce soit viable, la validité du cache ne doit pas être trop longue et il faut pouvoir le vider à la main.

    à tester

    • https://paperairoplane.net/?p=380
    June 23, 2014 at 5:47:20 PM GMT+2 - permalink - archive.org - http://www.masterzen.fr/2010/03/21/more-puppet-offloading/
    nginx puppet
  • Module ngx_http_core_module

    Petite chose à savoir côté conf nginx : chaque header appartenant à la requête est disponible sous la forme d'une variable portant le nom : $http_name

    avec "name" = le nom du header en remplaçant les "-" par des "_" et le tout en minuscule, ouf.

    Exemple : X-Header-De-la-mort devient : $http_x_header_de_la_mort

    Utile pour introduire de la logique conditionnelle sur ces headers :)

    June 19, 2014 at 11:13:08 AM GMT+2 - permalink - archive.org - http://nginx.org/en/docs/http/ngx_http_core_module.html
    header http nginx
  • logstalgia - website access log visualization - Google Project Hosting

    Logstalgia is a website traffic visualization that replays or streams web-server access logs as a pong-like battle between the web server and an never ending torrent of requests.

    May 27, 2014 at 2:37:51 PM GMT+2 - permalink - archive.org - http://code.google.com/p/logstalgia/
    apache log nginx pong
  • SSL Offloading, Encryption and Certificates with NGINX - NGINX

    intro à l'offloading ssl de nginx

    April 30, 2014 at 10:13:42 PM GMT+2 - permalink - archive.org - http://nginx.com/blog/nginx-ssl/
    nginx
  • netcraft-april-2014.png (Image PNG, 1266 × 1028 pixels) - Redimensionnée (83%)

    Apache qui passe en dessous de IIS c'est pour bientôt d'après la tendance :o
    Est-ce que l'opensource recule ? Non surement que beaucoup de monde switch de nginx à apache ?

    April 10, 2014 at 1:34:28 PM GMT+2 - permalink - archive.org - http://nginx.wpengine.com/wp-content/uploads/2014/04/netcraft-april-2014.png
    apache nginx
  • https://github.com/lebinh/ngxtop

    Pour monitorer en temps réel un nginx

    March 24, 2014 at 1:08:30 PM GMT+1 - permalink - archive.org - https://github.com/lebinh/ngxtop
    nginx
  • thumbnail
    Why we don't use a CDN: A story about SPDY and SSL

    Bon article sur quelques subtilités ssl

    via Skunnyk

    February 21, 2014 at 9:52:11 AM GMT+1 - permalink - archive.org - https://thethemefoundry.com/blog/why-we-dont-use-a-cdn-spdy-ssl/
    bench http https nginx ssl
  • Optimisations Nginx : bien comprendre sendfile, tcp_nodelay et tcp_nopush | UX, Startups & Cie
    February 7, 2014 at 10:17:49 AM GMT+1 - permalink - archive.org - http://t37.net/optimisations-nginx-bien-comprendre-sendfile-tcp-nodelay-et-tcp-nopush.html
    nginx sys
  • Module ngx_http_upstream_module

    to read

    February 6, 2014 at 10:26:11 AM GMT+1 - permalink - archive.org - http://nginx.org/en/docs/http/ngx_http_upstream_module.html#keepalive
    nginx
  • How to speed up Nginx web server with PageSpeed - Linux FAQ

    à lire

    January 30, 2014 at 6:12:44 PM GMT+1 - permalink - archive.org - http://xmodulo.com/2014/01/speed-nginx-web-server-pagespeed.html
    nginx
  • Notes: Tip: keep the Host header via nginx proxy_pass

    Pour garder le header host original :

    proxy_set_header Host $http_host;
    ou
    proxy_set_header Host $host;

    Sinon le header host est re-écrit par nginx avant de balancer la requete aux serveurs derriere.

    January 23, 2014 at 4:40:38 PM GMT+1 - permalink - archive.org - http://www.simplicidade.org/notes/archives/2011/02/nginx_proxy_host_header.html
    nginx
Links per page: 20 50 100
◄Older
page 2 / 3
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation