From 93de9728efb0e689ce413e980dae685ac0b4b9c3 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Date: Fri, 4 Nov 2011 20:48:16 +0100 Subject: Added my nginx/unicorn configuration --- nginx_unicorn/nginx.http.conf | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 nginx_unicorn/nginx.http.conf (limited to 'nginx_unicorn/nginx.http.conf') diff --git a/nginx_unicorn/nginx.http.conf b/nginx_unicorn/nginx.http.conf new file mode 100644 index 0000000..e8945a9 --- /dev/null +++ b/nginx_unicorn/nginx.http.conf @@ -0,0 +1,19 @@ + +user http; +worker_processes 1; + +events { + worker_connections 1024; +} + + +http { + include mime.types; + default_type application/octet-stream; + + sendfile on; + #keepalive_timeout 0; + keepalive_timeout 65; + + include /etc/nginx/sites-enabled/*; +} -- cgit v1.2.3