From 20ccb2a3e64140ed52ddf18211275fafd9e7708b Mon Sep 17 00:00:00 2001 From: Ryo Date: Tue, 21 Oct 2025 21:38:57 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20the=20nginx=20path=20forwarding=20rule?= =?UTF-8?q?=20issue=20in=20the=20configuration=20manage=E2=80=A6=20(#2365)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker/nginx/conf.d/default.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/nginx/conf.d/default.conf b/docker/nginx/conf.d/default.conf index 00a0ba024..6db88df4b 100644 --- a/docker/nginx/conf.d/default.conf +++ b/docker/nginx/conf.d/default.conf @@ -18,7 +18,7 @@ server { } # API proxy - location ~ ^/(api|v[1-3]|admin)/ { + location ~ ^/(api|v[1-3]|admin)(/|$) { proxy_pass http://coze-server:8888; proxy_set_header Host $http_host;