fix: prevent stale mini app mobile styles

This commit is contained in:
3252a8
2026-06-08 10:02:46 +03:00
parent 3e58e01d53
commit 63192659e4
4 changed files with 21 additions and 5 deletions
+6 -2
View File
@@ -111,7 +111,9 @@ server {
location ~* ^/subscription_webapp(_admin)?\.(css|js)$ {
expires off;
add_header Cache-Control "no-cache";
add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0";
add_header Pragma "no-cache";
add_header Expires "0";
add_header X-Robots-Tag "noindex, nofollow, noarchive";
try_files $uri =404;
}
@@ -124,7 +126,9 @@ server {
}
location / {
add_header Cache-Control "no-cache";
add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0";
add_header Pragma "no-cache";
add_header Expires "0";
add_header X-Robots-Tag "noindex, nofollow, noarchive";
try_files $uri /index.html;
}