123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- user root;
- worker_processes auto;
- pid /run/nginx.pid;
- events {
- worker_connections 768;
-
- }
- http {
-
-
-
- sendfile on;
- tcp_nopush on;
- tcp_nodelay on;
- keepalive_timeout 65;
- types_hash_max_size 2048;
- client_max_body_size 200M;
-
-
-
- include /etc/nginx/mime.types;
- default_type application/octet-stream;
-
-
-
- ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
- 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/*;
- }
|