directing webserver traffic to indexV2.html to force V1 users to re-cache

This commit is contained in:
Carter 2025-06-04 14:15:04 -06:00
parent b710c03ede
commit f328c4036a
2 changed files with 20 additions and 1 deletions

View file

@ -61,7 +61,12 @@ http {
expires $cache_expires;
root /usr/share/nginx/html;
try_files $uri /index.html;
try_files $uri /indexV2.html;
location = /index.html {
return 301 /indexV2.html;
}
}
# Healthcheck