반응형
## /etc/hosts 설정
## /etc/nginx/sites-available 내 파일 수정 (reverse-proxy.conf 설정)
upstream backend {
server localhost:9022;
server localhost:9023;
}
server {
listen 80;
server_name loadbalance.web;
location / {
proxy_pass http://backend;
}
}
## sudo systemctl reload nginx
## sudo systemctl restart nginx
## loadbalance.web/test 접속
## localhost:9022 로 접속됨
반응형
'NGINX' 카테고리의 다른 글
[실습 성공] 무료 SSL 인증서를 받고 HTTPS를 구성하는 방법 (How to get free SSL certificate and configure HTTPS) (0) | 2021.05.26 |
---|---|
[학습] NGINX 상세구조 분석 (0) | 2021.05.21 |
[최종] Nginx Load Balancer (Nginx 로드밸런서) - (분기방법/꼭 학습할것!!!) (0) | 2021.05.20 |
NGINX 풀강의 --- 2 Hours NginX Crash Course + Bonus Content (꼭 학습할것) (0) | 2021.05.16 |
NGINX + HTTPS 적용하기 (0) | 2021.04.27 |
댓글