Nginx Proxy 설정 추가본

Nginx Proxy host주소를 변수에 담아 사용해보자

temp_host에 담아서 사용

1
2
3
4
5
6
7
8
9
set $temp_host "http://localhost:7077";
location / {

proxy_pass $temp_host;
proxy_http_version 1.1;

#root html;
#index index.html index.htm;
}

위와같이 설정후 nginx 재시작 후 localhost:5000 호출시 정상작동 확인

마무리

사실 여기까지 오게된 이유는… Nginx를 ELB Reverse Proxy로 사용할때… connection failed가 가끔가다 발생하여 해당 문제 해결을 위해…. 아래의 블로그를 참고하여 진행하였다…

Nginx를 ELB Reverse Proxy로 사용할때 주의 점 이글을 작성해주신분 감사합니다..