add redirect away from old SVG favicon

This commit is contained in:
Daniel Micay 2021-06-03 17:04:18 -04:00
parent b7329d4f44
commit 23455a1879

View File

@ -312,6 +312,11 @@ http {
add_header Cache-Control "public, max-age=1800";
}
# redirect away from the old SVG favicon location
location ~ /mask\-icon.svg {
return 301 /favicon.svg;
}
location ~ "(/index|\.(br|gz|html))$" {
internal;
}