|
- user www-data;
- worker_processes {{ nginx_worker_processes }};
- pid /run/nginx.pid;
-
- events {
- worker_connections {{ nginx_worker_connections }};
-
- }
-
- http {
-
-
-
-
- sendfile on;
- tcp_nopush on;
- tcp_nodelay on;
- keepalive_timeout 65;
- types_hash_max_size 2048;
- server_tokens off;
-
- {% if nginx_set_server_names_hash_bucket_size %}
- server_names_hash_bucket_size 128;
- {% endif %}
-
-
- include /etc/nginx/mime.types;
- default_type application/octet-stream;
-
-
-
-
- ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
- ssl_prefer_server_ciphers on;
-
-
-
-
- access_log /var/log/nginx/access.log;
- error_log /var/log/nginx/error.log;
-
-
-
-
- gzip on;
- gzip_disable "msie6";
-
-
-
-
-
-
-
-
-
-
- include /etc/nginx/conf.d/*.conf;
- include /etc/nginx/sites-enabled/*;
- }
|