Skip to content

Instantly share code, notes, and snippets.

View jibbius's full-sized avatar

Jack Barker jibbius

View GitHub Profile
@jibbius
jibbius / www.conf
Created December 24, 2013 09:59 — forked from evansolomon/www.conf
; Start a new pool named 'www'.
; the variable $pool can we used in any directive and will be replaced by the
; pool name ('www' here)
[www]
; Per pool prefix
; It only applies on the following directives:
; - 'slowlog'
; - 'listen' (unixsocket)
; - 'chroot'
@jibbius
jibbius / nginx.conf
Last active January 1, 2016 07:28 — forked from evansolomon/nginx.conf
user www-data;
worker_processes 4;
worker_cpu_affinity 0001 0010 0100 1000;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
client_max_body_size 10m;
events {
worker_connections 2048;
}