/silk/conf_templates/nginx_root.conf
https://bitbucket.org/btubbs/silk-deployment/ · Config · 33 lines · 24 code · 9 blank · 0 comment · 0 complexity · ffbcb9ed364bf9fdd765e1d7ecb439f7 MD5 · raw file
- user www-data;
- worker_processes 4;
- error_log /var/log/nginx/error.log;
- pid /var/run/nginx.pid;
- events {
- worker_connections 1024;
- # multi_accept on;
- }
- http {
- include /etc/nginx/mime.types;
- access_log /var/log/nginx/access.log;
- sendfile on;
- #tcp_nopush on;
- #keepalive_timeout 0;
- keepalive_timeout 65;
- tcp_nodelay on;
- gzip on;
- gzip_disable "MSIE [1-6]\.(?!.*SV1)";
- #includes that come with stock nginx
- include /etc/nginx/conf.d/*.conf;
- include /etc/nginx/sites-enabled/*;
- #include config files from all silk sites
- include %(srv_root)s/*/conf/nginx.conf;
- }