aboutsummaryrefslogtreecommitdiff
path: root/nginx_unicorn/nginx.http.conf
diff options
context:
space:
mode:
Diffstat (limited to 'nginx_unicorn/nginx.http.conf')
-rw-r--r--nginx_unicorn/nginx.http.conf19
1 files changed, 19 insertions, 0 deletions
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/*;
+}