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

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. server_name resume.ataber.pw;
  19. return 301 https://$host$request_uri;
  20. }
  21. server {
  22. listen 443 ssl http2;
  23. listen [::]:443 ssl http2;
  24. server_name resume.ataber.pw;
  25. ssl_certificate /etc/letsencrypt/live/ataber.pw/fullchain.pem;
  26. ssl_certificate_key /etc/letsencrypt/live/ataber.pw/privkey.pem;
  27. ssl_trusted_certificate /etc/letsencrypt/live/ataber.pw/chain.pem;
  28. ssl_dhparam /etc/ssl/private/dhparam.pem;
  29. add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always;
  30. root /var/www/resume;
  31. # Add index.php to the list if you are using PHP
  32. index index.html index.htm index.nginx-debian.html;
  33. location / {
  34. try_files $uri $uri/ =404;
  35. }
  36. }