From 1917eae0aefbffc8d580330115f9a73b4ef07a00 Mon Sep 17 00:00:00 2001 From: Kroese Date: Fri, 14 Aug 2026 14:02:07 +0200 Subject: [PATCH] fix: Do not set no-store on index page (#1377) --- src/finish.sh | 2 ++ web/conf/nginx.conf | 8 -------- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/src/finish.sh b/src/finish.sh index 3162675..a42f636 100644 --- a/src/finish.sh +++ b/src/finish.sh @@ -1,6 +1,8 @@ #!/usr/bin/env bash set -Eeuo pipefail +fKill "progress.sh" + if [ -s "$QEMU_DIR/qemu.host" ] && [[ "$(<"$QEMU_DIR/qemu.host")" == "172.17."* ]]; then warn "your container IP starts with 172.17.* which will cause conflicts when you install the Container Manager package inside DSM!" fi diff --git a/web/conf/nginx.conf b/web/conf/nginx.conf index 0448922..18cc7cd 100644 --- a/web/conf/nginx.conf +++ b/web/conf/nginx.conf @@ -25,18 +25,10 @@ server { set $cache_control "no-cache"; - if ($uri = /) { - set $cache_control "no-store"; - } - if ($uri = /msg.html) { set $cache_control "no-store"; } - if ($uri = /index.html) { - set $cache_control "no-store"; - } - add_header Cache-Control $cache_control always; location / {