From 7d763e0a88be9674df949a1aaecda57fc7a44452 Mon Sep 17 00:00:00 2001 From: pricelees Date: Wed, 24 Jul 2024 19:05:21 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20swagger=20=EC=A0=91=EC=86=8D=20=EB=B6=88?= =?UTF-8?q?=EA=B0=80=20=EB=AC=B8=EC=A0=9C=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/conf.d/default.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/conf.d/default.conf b/frontend/conf.d/default.conf index b2afee91a..aebd117de 100644 --- a/frontend/conf.d/default.conf +++ b/frontend/conf.d/default.conf @@ -8,7 +8,7 @@ server { } location /v1/ { - proxy_pass http://localhost:8080; + proxy_pass http://mouda-be:8080; proxy_set_header HOST $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; @@ -20,7 +20,7 @@ server { location ~ ^/(swagger-ui/|swagger|webjars|configuration|swagger-resources|v2|v3|csrf) { - proxy_pass http://localhost:8080; + proxy_pass http://mouda-be:8080; proxy_set_header HOST $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;