directing webserver traffic to indexV2.html to force V1 users to re-cache
This commit is contained in:
parent
b710c03ede
commit
f328c4036a
2 changed files with 20 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue