diff options
author | Claire <claire.github-309c@sitedethib.com> | 2021-08-20 13:01:50 +0200 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2021-08-20 13:01:50 +0200 |
commit | 4e2a8c9b386635efdda71de94a78ccbdffc4e152 (patch) | |
tree | d136d66680e1223d28cd5d40312a99a86976f9c8 /dist | |
parent | 4a364de500029676b9828ec596ed6c2a09cfb65c (diff) | |
parent | a2afcac7d9d55860f62f2f27475cd5a059090505 (diff) |
Merge branch 'main' into glitch-soc/merge-upstream
Diffstat (limited to 'dist')
-rw-r--r-- | dist/nginx.conf | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/dist/nginx.conf b/dist/nginx.conf index a0429d2aa..27ca868ab 100644 --- a/dist/nginx.conf +++ b/dist/nginx.conf @@ -31,6 +31,7 @@ server { ssl_ciphers HIGH:!MEDIUM:!LOW:!aNULL:!NULL:!SHA; ssl_prefer_server_ciphers on; ssl_session_cache shared:SSL:10m; + ssl_session_tickets off; # Uncomment these lines once you acquire a certificate: # ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem; @@ -51,7 +52,7 @@ server { gzip_http_version 1.1; gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; - add_header Strict-Transport-Security "max-age=31536000"; + add_header Strict-Transport-Security "max-age=31536000" always; location / { try_files $uri @proxy; @@ -59,13 +60,13 @@ server { location ~ ^/(emoji|packs|system/accounts/avatars|system/media_attachments/files) { add_header Cache-Control "public, max-age=31536000, immutable"; - add_header Strict-Transport-Security "max-age=31536000"; + add_header Strict-Transport-Security "max-age=31536000" always; try_files $uri @proxy; } location /sw.js { add_header Cache-Control "public, max-age=0"; - add_header Strict-Transport-Security "max-age=31536000"; + add_header Strict-Transport-Security "max-age=31536000" always; try_files $uri @proxy; } @@ -89,7 +90,7 @@ server { proxy_cache_valid 410 24h; proxy_cache_use_stale error timeout updating http_500 http_502 http_503 http_504; add_header X-Cached $upstream_cache_status; - add_header Strict-Transport-Security "max-age=31536000"; + add_header Strict-Transport-Security "max-age=31536000" always; tcp_nodelay on; } |