diff --git a/nginx.conf b/nginx.conf index a2c0d11..47b3c38 100644 --- a/nginx.conf +++ b/nginx.conf @@ -63,6 +63,15 @@ http { expires $cache_expires; + location = /update { + return 302 /update.html; + } + + location = /update.html { + add_header Cache-Control "no-store, no-cache, must-revalidate"; + } + + # Redirect old /index.html requests to new file location = /index.html { return 301 /indexV2.html; diff --git a/update.html b/update.html new file mode 100644 index 0000000..e69de29