12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- ## Main site config
- server {
- listen 80 default_server;
- listen [::]:80 default_server;
- listen 443 default_server ssl;
- listen [::]:443 default_server ssl;
- # SSL configuration
- #
- # listen 443 ssl default_server;
- # listen [::]:443 ssl default_server;
- #
- # Note: You should disable gzip for SSL traffic.
- # See: https://bugs.debian.org/773332
- #
- # Read up on ssl_ciphers to ensure a secure configuration.
- # See: https://bugs.debian.org/765782
- #
- # Self signed certs generated by the ssl-cert package
- # Don't use them in a production server!
- #
- # include snippets/snakeoil.conf;
- server_name demur.red; ## Name of server
- root /var/www/pelican; ## Path to root
- ## Disable all methods besides HEAD, GET and POST.
- if ($request_method !~ ^(GET|HEAD|POST)$ ) {
- return 444;
- }
- ## Add index.php to the list if you are using PHP
- index index.php index.html index.htm;
- ## Include certbot fix
- include /etc/nginx/snippets/nginx.well-known.conf;
- ## Include ssl
- include /etc/nginx/snippets/nginx.ssl.conf;
- ### Deny Stuffs ### {{{
- ## Protect specific TXT and config files
- location ~ /(\.|readme.html|readme.md|changelog.txt|changelog.md|contributing.txt|contributing.md|license.txt|license.md|legalnotice|privacy.txt|privacy.md|security.txt|security.md|sample-.*txt)
- {
- deny all;
- }
- ## Protect .git files
- location ~ /\.git/ {
- access_log off;
- log_not_found off;
- deny all;
- }
- ## Stop logging /theme
- location /theme {
- access_log off;
- }
- ### End Deny Stuffs ### }}}
- ### Rate Limit ### {{{
- limit_req zone=perip burst=100 nodelay;
- limit_req zone=perserver burst=5000;
- ### End Rate Limit ### }}}
- ### php attempt ### {{{
- ## Pass the PHP scripts to FastCGI server listening on /var/run/php5-fpm.sock
- location ~ \.php$ {
- try_files $uri =404;
- fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- include fastcgi_params;
- }
- ### End php ### }}}
- ### Error Redirects ### {{{
- ## Redirect server error pages
- error_page 500 501 502 503 504 /pages/50x;
- error_page 404 /pages/404;
- error_page 403 /pages/403;
- ### End Error ### }}}
- }
|