diff options
| author | Miquel Sabaté <mikisabate@gmail.com> | 2011-11-04 20:48:16 +0100 |
|---|---|---|
| committer | Miquel Sabaté <mikisabate@gmail.com> | 2011-11-04 20:48:16 +0100 |
| commit | 93de9728efb0e689ce413e980dae685ac0b4b9c3 (patch) | |
| tree | 18bbb262eeeab567f2438d38c7f8134391a67ad8 /nginx_unicorn/nginx.http.conf | |
| parent | 173bf566f6a82d578780fad9b14b42f20b704161 (diff) | |
| download | dotfiles-93de9728efb0e689ce413e980dae685ac0b4b9c3.tar.gz dotfiles-93de9728efb0e689ce413e980dae685ac0b4b9c3.zip | |
Added my nginx/unicorn configuration
Diffstat (limited to 'nginx_unicorn/nginx.http.conf')
| -rw-r--r-- | nginx_unicorn/nginx.http.conf | 19 |
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/*; +} |
