From 905b87fa24f4a7900364a5e1d4381af20c8ed507 Mon Sep 17 00:00:00 2001 From: cabbagec Date: Wed, 18 Mar 2026 04:26:43 +0800 Subject: [PATCH] debug: interactive bug --- nginx.conf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 7afeaac..765e9e2 100644 --- a/nginx.conf +++ b/nginx.conf @@ -30,8 +30,7 @@ location = /s/ { # ^~ ensures this takes priority over the general /s/ proxy below. location ^~ /s/static/ { alias /root/repo/urlshortener/static/; - expires 7d; - add_header Cache-Control "public, immutable"; + add_header Cache-Control "no-cache"; } # --- Proxy everything else under /s/ to the Python backend ---