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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. upstream php-handler {
  2. server 127.0.0.1:9000;
  3. server unix:/run/php/php7.2-fpm.sock;
  4. }
  5. server {
  6. listen 80;
  7. listen [::]:80;
  8. server_name cloud.ataber.pw;
  9. # enforce https
  10. return 301 https://$server_name$request_uri;
  11. }
  12. server {
  13. listen 443 ssl http2;
  14. listen [::]:443 ssl http2;
  15. server_name cloud.ataber.pw;
  16. ssl_certificate /etc/letsencrypt/live/ataber.pw/fullchain.pem;
  17. ssl_certificate_key /etc/letsencrypt/live/ataber.pw/privkey.pem;
  18. ssl_trusted_certificate /etc/letsencrypt/live/ataber.pw/chain.pem;
  19. add_header X-Content-Type-Options nosniff;
  20. add_header X-XSS-Protection "1; mode=block";
  21. add_header X-Robots-Tag none;
  22. add_header X-Download-Options noopen;
  23. add_header X-Permitted-Cross-Domain-Policies none;
  24. add_header Referrer-Policy no-referrer;
  25. add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always;
  26. fastcgi_hide_header X-Powered-By;
  27. # Path to the root of your installation
  28. root /var/www/nextcloud/;
  29. location = /robots.txt {
  30. allow all;
  31. log_not_found off;
  32. access_log off;
  33. }
  34. # The following 2 rules are only needed for the user_webfinger app.
  35. # Uncomment it if you're planning to use this app.
  36. #rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
  37. #rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json
  38. # last;
  39. location = /.well-known/carddav {
  40. return 301 $scheme://$host/remote.php/dav;
  41. }
  42. location = /.well-known/caldav {
  43. return 301 $scheme://$host/remote.php/dav;
  44. }
  45. # set max upload size
  46. client_max_body_size 512M;
  47. fastcgi_buffers 64 4K;
  48. # Enable gzip but do not remove ETag headers
  49. gzip on;
  50. gzip_vary on;
  51. gzip_comp_level 4;
  52. gzip_min_length 256;
  53. gzip_proxied expired no-cache no-store private no_last_modified no_etag auth;
  54. gzip_types application/atom+xml application/javascript application/json application/ld+json application/manifest+json application/rss+xml application/vnd.geo+json application/vnd.ms-fontobject application/x-font-ttf application/x-web-app-manifest+json application/xhtml+xml application/xml font/opentype image/bmp image/svg+xml image/x-icon text/cache-manifest text/css text/plain text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy;
  55. # Uncomment if your server is build with the ngx_pagespeed module
  56. # This module is currently not supported.
  57. #pagespeed off;
  58. location / {
  59. rewrite ^ /index.php$request_uri;
  60. }
  61. location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)/ {
  62. deny all;
  63. }
  64. location ~ ^/(?:\.|autotest|occ|issue|indie|db_|console) {
  65. deny all;
  66. }
  67. location ~ ^/(?:index|remote|public|cron|core/ajax/update|status|ocs/v[12]|updater/.+|ocs-provider/.+)\.php(?:$|/) {
  68. fastcgi_split_path_info ^(.+?\.php)(/.*)$;
  69. include fastcgi_params;
  70. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  71. fastcgi_param PATH_INFO $fastcgi_path_info;
  72. fastcgi_param HTTPS on;
  73. #Avoid sending the security headers twice
  74. fastcgi_param modHeadersAvailable true;
  75. fastcgi_param front_controller_active true;
  76. fastcgi_pass php-handler;
  77. fastcgi_intercept_errors on;
  78. fastcgi_request_buffering off;
  79. }
  80. location ~ ^/(?:updater|ocs-provider)(?:$|/) {
  81. try_files $uri/ =404;
  82. index index.php;
  83. }
  84. # Adding the cache control header for js and css files
  85. # Make sure it is BELOW the PHP block
  86. location ~ \.(?:css|js|woff|svg|gif)$ {
  87. try_files $uri /index.php$request_uri;
  88. add_header Cache-Control "public, max-age=15778463";
  89. # Add headers to serve security related headers (It is intended to
  90. # have those duplicated to the ones above)
  91. # Before enabling Strict-Transport-Security headers please read into
  92. # this topic first.
  93. # add_header Strict-Transport-Security "max-age=15768000; includeSubDomains; preload;";
  94. #
  95. # WARNING: Only add the preload option once you read about
  96. # the consequences in https://hstspreload.org/. This option
  97. # will add the domain to a hardcoded list that is shipped
  98. # in all major browsers and getting removed from this list
  99. # could take several months.
  100. add_header X-Content-Type-Options nosniff;
  101. add_header X-XSS-Protection "1; mode=block";
  102. add_header X-Robots-Tag none;
  103. add_header X-Download-Options noopen;
  104. add_header X-Permitted-Cross-Domain-Policies none;
  105. add_header Referrer-Policy no-referrer;
  106. # Optional: Don't log access to assets
  107. access_log off;
  108. }
  109. location ~ \.(?:png|html|ttf|ico|jpg|jpeg)$ {
  110. try_files $uri /index.php$request_uri;
  111. # Optional: Don't log access to other assets
  112. access_log off;
  113. }
  114. # static files
  115. location ^~ /loleaflet {
  116. proxy_pass https://localhost:9980;
  117. proxy_set_header Host $http_host;
  118. }
  119. # WOPI discovery URL
  120. location ^~ /hosting/discovery {
  121. proxy_pass https://localhost:9980;
  122. proxy_set_header Host $http_host;
  123. }
  124. # main websocket
  125. location ~ ^/lool/(.*)/ws$ {
  126. proxy_pass https://localhost:9980;
  127. proxy_set_header Upgrade $http_upgrade;
  128. proxy_set_header Connection "Upgrade";
  129. proxy_set_header Host $http_host;
  130. proxy_read_timeout 36000s;
  131. }
  132. # download, presentation and image upload
  133. location ~ ^/lool {
  134. proxy_pass https://localhost:9980;
  135. proxy_set_header Host $http_host;
  136. }
  137. # Admin Console websocket
  138. location ^~ /lool/adminws {
  139. proxy_pass https://localhost:9980;
  140. proxy_set_header Upgrade $http_upgrade;
  141. proxy_set_header Connection "Upgrade";
  142. proxy_set_header Host $http_host;
  143. proxy_read_timeout 36000s;
  144. }
  145. }