nginx.conf 475 B

123456789101112131415161718192021222324252627282930
  1. user munin;
  2. worker_processes 4;
  3. pid /run/nginx.pid;
  4. events {
  5. worker_connections 768;
  6. # multi_accept on;
  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. include /etc/nginx/mime.types;
  15. default_type application/octet-stream;
  16. access_log /var/log/nginx/access.log;
  17. error_log /var/log/nginx/error.log;
  18. gzip on;
  19. gzip_disable "msie6";
  20. include /etc/nginx/conf.d/*.conf;
  21. include /etc/nginx/sites-enabled/*;
  22. }