From 8806cce4136db5872e26c3107a7fa87c5e92c21e Mon Sep 17 00:00:00 2001 From: LukeGus Date: Wed, 31 Dec 2025 18:40:27 -0600 Subject: [PATCH] chore: nginx config issue for dokcer console --- docker/nginx-https.conf | 2 +- docker/nginx.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/nginx-https.conf b/docker/nginx-https.conf index cebb0bad..7788848b 100644 --- a/docker/nginx-https.conf +++ b/docker/nginx-https.conf @@ -335,7 +335,7 @@ http { proxy_set_header X-Forwarded-Proto $scheme; } - location /docker/console/ { + location ^~ /docker/console/ { proxy_pass http://127.0.0.1:30008/; proxy_http_version 1.1; diff --git a/docker/nginx.conf b/docker/nginx.conf index c3b4955d..ac6b7112 100644 --- a/docker/nginx.conf +++ b/docker/nginx.conf @@ -324,7 +324,7 @@ http { proxy_set_header X-Forwarded-Proto $scheme; } - location /docker/console/ { + location ^~ /docker/console/ { proxy_pass http://127.0.0.1:30008/; proxy_http_version 1.1;