1 Commits

Author SHA1 Message Date
135c041448 Prevent stale web shell caching 2026-07-15 17:01:18 -07:00

View File

@@ -82,7 +82,9 @@
gzip_static on; gzip_static on;
root ${staticAssetsPath}; root ${staticAssetsPath};
try_files $uri $uri/ /index.html; try_files $uri $uri/ /index.html;
add_header Cache-Control "no-cache, must-revalidate"; etag off;
if_modified_since off;
add_header Cache-Control "no-store" always;
} }
} }
} }