treat mask-icon.svg as an implementation detail

This commit is contained in:
Daniel Micay
2021-05-18 14:02:38 -04:00
parent 9634d20dca
commit 5f018c01e1
2 changed files with 7 additions and 8 deletions

View File

@@ -238,6 +238,12 @@ http {
try_files /favicon.svg =404;
}
location = /mask-icon.svg {
include snippets/security-headers.conf;
add_header Cross-Origin-Resource-Policy "same-origin" always;
add_header Cache-Control "public, max-age=31536000, immutable";
}
location ^~ /fonts/ {
include snippets/security-headers.conf;
add_header Cross-Origin-Resource-Policy "same-origin" always;
@@ -258,13 +264,6 @@ http {
add_header Cache-Control "public, max-age=31536000, immutable";
}
location ~ "\.svg$" {
include snippets/security-headers.conf;
# avoid breaking image hotlinking such as https://github.com/TryGhost/Ghost/issues/12880
add_header Cross-Origin-Resource-Policy "cross-origin" always;
add_header Cache-Control "public, max-age=31536000";
}
location ~ "\.png$" {
include snippets/security-headers.conf;
# avoid breaking image hotlinking such as https://github.com/TryGhost/Ghost/issues/12880