SMALL
nginx를 Reverse-Proxy 서버로 사용할 수 있도록 세팅하는 방법
Client는 Proxy Server에 요청을 하고
Proxy Server는 각 웹서버에 요청 후 받은 응답을
Client에 전달하는 구조 입니다.
1. nginx conf 파일 수정
- 처음 세팅 시 default.conf를 바라보고 있는데 주석 처리를 해줍니다.
#include /etc/nginx/conf.d/*.conf; |
- server 관련 정보를 입력해줍니다.
server { # 들어오는 port listen 8080; server_name localhost; error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } # 실제로 바라볼 port location / { proxy_pass http://127.0.0.1:9090; } } |
2. nginx 서버를 재시작 해줍니다.
sudo systemctl restart nginx |
8080 포트로 들어오면 실제로는 9090포트를
바라보는 역할을 하도록 세팅을 완료하였습니다.
BIG
'서버 (Linux, Windows, AWS) > Cloud (AWS, NCP)' 카테고리의 다른 글
[Linux] centos nginx multi port 설정 (0) | 2023.02.20 |
---|---|
[Linux] centos yum nginx 삭제 및 설치 방법 (0) | 2023.02.20 |
AWS Lambda 개발 셋팅 (0) | 2023.02.06 |