Skip to content

Commit a1e3b5f

Browse files
committed
chore: nginx 설정 변경
1 parent 20e32d8 commit a1e3b5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nginx.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ http{
1616

1717
# client 서비스로 프록시 (프론트엔드 애플리케이션)
1818
location / {
19-
proxy_pass http://client:80; # client 컨테이너의 포트로 프록시
19+
proxy_pass http://175.106.98.147:80; # client 컨테이너의 포트로 프록시
2020
proxy_set_header Host $host;
2121
proxy_set_header X-Real-IP $remote_addr;
2222
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -25,7 +25,7 @@ http{
2525

2626
# server 서비스로 프록시 (API 요청을 server로 전달)
2727
location /api {
28-
proxy_pass http://server:3000; # server 컨테이너의 포트로 프록시
28+
proxy_pass http://175.106.98.147:3000; # server 컨테이너의 포트로 프록시
2929
proxy_set_header Host $host;
3030
proxy_set_header X-Real-IP $remote_addr;
3131
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

0 commit comments

Comments
 (0)