123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- user www-data;
- worker_processes 4;
- pid /run/nginx.pid;
- include /etc/nginx/modules-enabled/*.conf;
- 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 0;
- include /etc/nginx/mime.types;
- default_type application/octet-stream;
-
-
-
- access_log /dev/stdout;
- error_log /dev/stderr;
-
-
-
- gzip on;
- gzip_disable "msie6";
-
-
-
-
-
-
-
-
-
- include /config/nginx/site-confs/*;
- }
- daemon off;
|