Referral-column toggle applied after tables render (headers+cells stay in sync); nginx no-cache on index.html so deploys reach browsers

This commit is contained in:
Claude (via Marty)
2026-07-30 22:04:41 +00:00
parent 4e2d97af56
commit 63249c2b5d
3 changed files with 18 additions and 14 deletions
+9
View File
@@ -0,0 +1,9 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
# HTML must revalidate every load — deploys were invisible behind
# browser cache. Images/banners keep default caching.
location = /index.html { add_header Cache-Control "no-cache"; }
location = / { add_header Cache-Control "no-cache"; try_files /index.html =404; }
}