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

lychee 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. ##
  2. # You should look at the following URL's in order to grasp a solid understanding
  3. # of Nginx configuration files in order to fully unleash the power of Nginx.
  4. # http://wiki.nginx.org/Pitfalls
  5. # http://wiki.nginx.org/QuickStart
  6. # http://wiki.nginx.org/Configuration
  7. #
  8. # Generally, you will want to move this file somewhere, and start with a clean
  9. # file but keep this around for reference. Or just disable in sites-enabled.
  10. #
  11. # Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
  12. ##
  13. # Default server configuration
  14. #
  15. server {
  16. listen 80;
  17. listen [::]:80;
  18. # SSL configuration
  19. #
  20. # listen 443 ssl default_server;
  21. # listen [::]:443 ssl default_server;
  22. #
  23. # Note: You should disable gzip for SSL traffic.
  24. # See: https://bugs.debian.org/773332
  25. #
  26. # Read up on ssl_ciphers to ensure a secure configuration.
  27. # See: https://bugs.debian.org/765782
  28. #
  29. # Self signed certs generated by the ssl-cert package
  30. # Don't use them in a production server!
  31. #
  32. # include snippets/snakeoil.conf;
  33. root /home/alex/Lychee;
  34. # Add index.php to the list if you are using PHP
  35. index index.html index.htm index.nginx-debian.html index.php;
  36. server_name img.ataber.pw;
  37. location / {
  38. proxy_connect_timeout 500;
  39. proxy_send_timeout 500;
  40. proxy_read_timeout 500;
  41. send_timeout 500;
  42. }
  43. # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  44. #
  45. location ~ \.php$ {
  46. try_files $uri =404;
  47. fastcgi_split_path_info ^(.+\.php)(/.+)$;
  48. fastcgi_pass unix:/run/php/php7.2-fpm.sock;
  49. fastcgi_index index.php;
  50. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  51. include fastcgi_params;
  52. fastcgi_read_timeout 500;
  53. fastcgi_param PHP_VALUE "max_execution_time=18800
  54. post_max_size=0
  55. upload_max_filesize=2000M
  56. max_input_time=18800
  57. max_file_uploads=10000";
  58. }
  59. # deny access to .htaccess files, if Apache's document root
  60. # concurs with nginx's one
  61. #
  62. #location ~ /\.ht {
  63. # deny all;
  64. #}
  65. }
  66. # Virtual Host configuration for example.com
  67. #
  68. # You can move that to a different file under sites-available/ and symlink that
  69. # to sites-enabled/ to enable it.
  70. #
  71. #server {
  72. # listen 80;
  73. # listen [::]:80;
  74. #
  75. # server_name example.com;
  76. #
  77. # root /var/www/example.com;
  78. # index index.html;
  79. #
  80. # location / {
  81. # try_files $uri $uri/ =404;
  82. # }
  83. #}