Merge pull request #77 from PrivateBin/nginxfix

Fix syntax error in nginx config
This commit is contained in:
El RIDO 2021-10-10 19:55:18 +02:00 committed by GitHub
commit f15474e7c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,7 @@ server {
# no-transform tells Cloudflare and others to not change the content of
# the file and thus breaking SRI.
# https://developers.cloudflare.com/cache/about/cache-control#other
add header Cache-Control "public, max-age=3600, must-revalidate, no-transform";
add_header Cache-Control "public, max-age=3600, must-revalidate, no-transform";
try_files $uri $uri/ =404;
}