The collection of configuration files which run ataber.pw. Published here because people asked for them.

nginx.conf 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. client_max_body_size 100m;
  23. ##
  24. # SSL Settings
  25. ##
  26. ssl_protocols TLSv1.3 TLSv1.2; # Dropping SSLv3, ref: POODLE
  27. ssl_prefer_server_ciphers on;
  28. ssl_ciphers 'TLS_AES_256_GCM_SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES256-SHA';
  29. ssl_session_cache shared:SSL:10m;
  30. ssl_session_tickets off;
  31. resolver 9.9.9.9 1.1.1.1 valid=300s;
  32. resolver_timeout 5s;
  33. ssl_stapling on;
  34. ssl_stapling_verify on;
  35. ssl_ecdh_curve secp521r1:secp384r1;
  36. ##
  37. # Logging Settings
  38. ##
  39. access_log /var/log/nginx/access.log;
  40. error_log /var/log/nginx/error.log;
  41. ##
  42. # Gzip Settings
  43. ##
  44. gzip on;
  45. gzip_disable "msie6";
  46. # gzip_vary on;
  47. # gzip_proxied any;
  48. # gzip_comp_level 6;
  49. # gzip_buffers 16 8k;
  50. # gzip_http_version 1.1;
  51. # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
  52. ##
  53. # Virtual Host Configs
  54. ##
  55. include /etc/nginx/conf.d/*.conf;
  56. include /etc/nginx/sites-enabled/*;
  57. }
  58. #mail {
  59. # # See sample authentication script at:
  60. # # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
  61. #
  62. # # auth_http localhost/auth.php;
  63. # # pop3_capabilities "TOP" "USER";
  64. # # imap_capabilities "IMAP4rev1" "UIDPLUS";
  65. #
  66. # server {
  67. # listen localhost:110;
  68. # protocol pop3;
  69. # proxy on;
  70. # }
  71. #
  72. # server {
  73. # listen localhost:143;
  74. # protocol imap;
  75. # proxy on;
  76. # }
  77. #}