From f7870d16932b8b54d750d3e6cdc842a92c7479f2 Mon Sep 17 00:00:00 2001 From: Kroese Date: Tue, 11 Aug 2026 15:47:14 +0200 Subject: [PATCH] fix: Only disable no-store for msg.html (#1372) --- web/conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/conf/nginx.conf b/web/conf/nginx.conf index f5ee835..18cc7cd 100644 --- a/web/conf/nginx.conf +++ b/web/conf/nginx.conf @@ -25,7 +25,7 @@ server { set $cache_control "no-cache"; - if ($request_uri ~ "^/(?:msg\.html)?(?:\?.*)?$") { + if ($uri = /msg.html) { set $cache_control "no-store"; }