From ab6d6c6ba2b41490bb6743b3373c4f15ede86b90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=80=97=E5=AD=90?= Date: Thu, 29 Jan 2026 05:45:34 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=8F=8D=E5=90=91=E4=BB=A3=E7=90=86?= =?UTF-8?q?=E7=BC=93=E5=AD=98zone=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/webserver/nginx/proxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/webserver/nginx/proxy.go b/pkg/webserver/nginx/proxy.go index 3d518569..00054cfd 100644 --- a/pkg/webserver/nginx/proxy.go +++ b/pkg/webserver/nginx/proxy.go @@ -282,7 +282,7 @@ func generateProxyConfig(proxy types.Proxy) string { // Cache 配置 if proxy.Cache { - sb.WriteString(" proxy_cache proxy_cache;\n") + sb.WriteString(" proxy_cache cache_one;\n") sb.WriteString(" proxy_cache_valid 200 302 10m;\n") sb.WriteString(" proxy_cache_valid 404 1m;\n") }