We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20e32d8 commit a1e3b5fCopy full SHA for a1e3b5f
nginx.conf
@@ -16,7 +16,7 @@ http{
16
17
# client 서비스로 프록시 (프론트엔드 애플리케이션)
18
location / {
19
- proxy_pass http://client:80; # client 컨테이너의 포트로 프록시
+ proxy_pass http://175.106.98.147:80; # client 컨테이너의 포트로 프록시
20
proxy_set_header Host $host;
21
proxy_set_header X-Real-IP $remote_addr;
22
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -25,7 +25,7 @@ http{
25
26
# server 서비스로 프록시 (API 요청을 server로 전달)
27
location /api {
28
- proxy_pass http://server:3000; # server 컨테이너의 포트로 프록시
+ proxy_pass http://175.106.98.147:3000; # server 컨테이너의 포트로 프록시
29
30
31
0 commit comments