location / {
proxy_pass http://j10a708.p.ssafy.io:3000;
root /usr/share/nginx/html;
proxy_redirect off;
#index index.html index.htm;
charset utf-8;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
에서 proxy_pass http://j10a708.p.ssafy.io:8081;
(젠킨스 경로)로 바꾸니까 연결은 잘됨; 아무튼 내일 더 해봐야겠음
리버스 프록시를 설정하면서 nginx의 역할에 대해 더 자세히 알게 됐다.
vim /etc/nginx/conf.d/default.conf
설정
location / {
# docker inspect haryeom-fe <check gateway>
# proxy_pass http://172.17.0.1:3000;
proxy_pass http://도메인:3000;
# root
/usr/share/nginx/html;
# index index.html index.htm;
proxy_redirect off;
charset utf-8;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto scheme;
}
proxy_set_header Host $host;
proxy_redirect off;
proxy_set_header X-Forwarded-For
proxy_set_header X-Real-IP
proxy_set_header X-Forwarded-Proto