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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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 music.ataber.pw;
  19. return 301 https://$host$request_uri;
  20. }
  21. server {
  22. listen 443 ssl;
  23. listen [::]:443 ssl;
  24. server_name music.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. location = / {
  31. return 301 https://$host/airsonic;
  32. }
  33. location /airsonic {
  34. # First attempt to serve request as file, then
  35. # as directory, then fall back to displaying a 404.
  36. proxy_set_header X-Real-IP $remote_addr;
  37. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  38. proxy_set_header X-Forwarded-Proto https;
  39. proxy_set_header X-Forwarded-Host $http_host;
  40. proxy_set_header Host $http_host;
  41. proxy_max_temp_file_size 0;
  42. proxy_pass http://127.0.0.1:5002;
  43. proxy_redirect http:// https://;
  44. }
  45. }
  46. # Virtual Host configuration for example.com
  47. #
  48. # You can move that to a different file under sites-available/ and symlink that
  49. # to sites-enabled/ to enable it.
  50. #
  51. #server {
  52. # listen 80;
  53. # listen [::]:80;
  54. #
  55. # server_name example.com;
  56. #
  57. # root /var/www/example.com;
  58. # index index.html;
  59. #
  60. # location / {
  61. # try_files $uri $uri/ =404;
  62. # }
  63. #}