nginx.conf 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. user www-data;
  2. worker_processes auto;
  3. pid /run/nginx.pid;
  4. events {
  5. worker_connections 768;
  6. # multi_accept on;
  7. }
  8. http {
  9. ##
  10. # Basic Settings
  11. ##
  12. sendfile on;
  13. tcp_nopush on;
  14. tcp_nodelay on;
  15. keepalive_timeout 65;
  16. types_hash_max_size 2048;
  17. # server_tokens off;
  18. # server_names_hash_bucket_size 64;
  19. # server_name_in_redirect off;
  20. include /etc/nginx/mime.types;
  21. default_type application/octet-stream;
  22. ##
  23. # SSL Settings
  24. ##
  25. ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
  26. ssl_prefer_server_ciphers on;
  27. ##
  28. # Logging Settings
  29. ##
  30. access_log /app/nginx/access.log;
  31. error_log /app/nginx/error.log;
  32. ##
  33. # Gzip Settings
  34. ##
  35. gzip on;
  36. # gzip_vary on;
  37. # gzip_proxied any;
  38. # gzip_comp_level 6;
  39. # gzip_buffers 16 8k;
  40. # gzip_http_version 1.1;
  41. # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
  42. ##
  43. # Virtual Host Configs
  44. ##
  45. include /etc/nginx/conf.d/*.conf;
  46. include /etc/nginx/sites-enabled/*;
  47. }
  48. #mail {
  49. # # See sample authentication script at:
  50. # # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
  51. #
  52. # # auth_http localhost/auth.php;
  53. # # pop3_capabilities "TOP" "USER";
  54. # # imap_capabilities "IMAP4rev1" "UIDPLUS";
  55. #
  56. # server {
  57. # listen localhost:110;
  58. # protocol pop3;
  59. # proxy on;
  60. # }
  61. #
  62. # server {
  63. # listen localhost:143;
  64. # protocol imap;
  65. # proxy on;
  66. # }
  67. #}