일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- tool
- db
- IntelliJ
- 요리
- devops
- laravel
- jsp
- php
- MySQL
- Web Server
- Oracle
- javascript
- redis
- springboot
- AWS
- Spring Batch
- ReactJS
- it
- ubuntu
- 맛집
- Spring Boot
- linux
- elasticsearch
- Design Patterns
- java
- Spring
- Gradle
- jenkins
- JVM
- Git
Archives
- Today
- Total
아무거나
Ngnix 로드밸런싱 설정 (Nginx의 Upstream 모듈을 통해서 제공) 본문
반응형
로드밸런싱 설정 (Nginx의 Upstream 모듈을 통해서 제공)
- nginx config 파일에서 수정하자. [nginx.conf 또는 default.conf]
... http { upstream myapp { server server1.example.com server server2.example.com } server { listen 80; location / { proxy_pass http://myapp; } } } ...
반응형
'Infra > Nginx' 카테고리의 다른 글
성능 튜닝(keepalive, epoll) (0) | 2021.02.11 |
---|---|
특정 url path에 접근할 때 서버 경로에 있는 파일 불러오기 (0) | 2020.06.04 |
Sticky Session 관련 로드밸런서 스위칭 문제 (0) | 2020.05.23 |
413 Request Entity Too Large Errors 해결 (0) | 2019.04.05 |
리버스 프록시를 활용한 정적 리소스 캐시 (0) | 2019.01.31 |
Comments