1
0

nginx.conf 495 B

1234567891011121314151617181920212223242526
  1. user nbxyz;
  2. worker_processes 4;
  3. pid /run/nginx.pid;
  4. include /etc/nginx/modules/*.conf;
  5. events {
  6. worker_connections 768;
  7. }
  8. http {
  9. sendfile on;
  10. tcp_nopush on;
  11. tcp_nodelay on;
  12. keepalive_timeout 65;
  13. types_hash_max_size 2048;
  14. client_max_body_size 0;
  15. include /etc/nginx/mime.types;
  16. default_type application/octet-stream;
  17. access_log /config/log/nginx/access.log;
  18. error_log /config/log/nginx/error.log;
  19. gzip on;
  20. gzip_disable "msie6";
  21. include /config/nginx/site-confs/*;
  22. }
  23. daemon off;