일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- javascript
- Git
- Spring
- linux
- devops
- Design Patterns
- Web Server
- it
- IntelliJ
- php
- redis
- Gradle
- JVM
- db
- Oracle
- Spring Boot
- springboot
- ubuntu
- jsp
- ReactJS
- tool
- MySQL
- 요리
- 맛집
- laravel
- Spring Batch
- java
- jenkins
- AWS
- elasticsearch
Archives
- Today
- Total
목록webserber (1)
아무거나
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
2020. 5. 30. 00:39