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:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user