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

gitea 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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 git.ataber.pw;
  19. return 301 https://$host$request_uri;
  20. }
  21. server {
  22. listen 443 ssl http2;
  23. listen [::]:443 ssl http2;
  24. ssl_certificate /etc/letsencrypt/live/ataber.pw/fullchain.pem;
  25. ssl_certificate_key /etc/letsencrypt/live/ataber.pw/privkey.pem;
  26. ssl_trusted_certificate /etc/letsencrypt/live/ataber.pw/chain.pem;
  27. ssl_dhparam /etc/ssl/private/dhparam.pem;
  28. add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always;
  29. add_header X-Xss-Protection "1; mode=block" always;
  30. add_header X-Content-Type-Options "nosniff" always;
  31. add_header X-Frame-Options "SAMEORIGIN" always;
  32. proxy_hide_header X-Powered-By;
  33. add_header 'Referrer-Policy' 'no-referrer';
  34. add_header Content-Security-Policy "frame-ancestors ataber.pw git.ataber.pw;";
  35. server_name git.ataber.pw;
  36. location / {
  37. proxy_pass http://unix:/home/alex/gitea.sock;
  38. }
  39. # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  40. #
  41. #location ~ \.php$ {
  42. # include snippets/fastcgi-php.conf;
  43. #
  44. # # With php7.0-cgi alone:
  45. # fastcgi_pass 127.0.0.1:9000;
  46. # # With php7.0-fpm:
  47. # fastcgi_pass unix:/run/php/php7.0-fpm.sock;
  48. #}
  49. # deny access to .htaccess files, if Apache's document root
  50. # concurs with nginx's one
  51. #
  52. #location ~ /\.ht {
  53. # deny all;
  54. #}
  55. }
  56. # Virtual Host configuration for example.com
  57. #
  58. # You can move that to a different file under sites-available/ and symlink that
  59. # to sites-enabled/ to enable it.
  60. #
  61. #server {
  62. # listen 80;
  63. # listen [::]:80;
  64. #
  65. # server_name example.com;
  66. #
  67. # root /var/www/example.com;
  68. # index index.html;
  69. #
  70. # location / {
  71. # try_files $uri $uri/ =404;
  72. # }
  73. #}