Notice
Recent Posts
Link
Tags
- ORM
- static
- string
- springboot
- nginx
- spring mvc
- @transactional
- select
- Django
- java
- 스프링부트
- 문자열
- Docker
- mysql
- spring boot
- SSL
- sql
- 자바
- 스프링
- spring security 6
- spring
- 1차원 배열
- AWS
- join
- hibernate
- 데이터베이스
- DI
- jpa
- 프로그래머스
- PYTHON
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Archives
목록rolling deploy (1)
개발하는 자몽
롤링 무중단 배포
적용 전 준비할 코드 nginx.conf worker_processes auto; events { worker_connections 1024; } http { ... # for load balancing upstream project_server { server project_server2:8000; server project_server1:8000; keepalive 1024; } server { listen 80; location / { proxy_pass http://project_server/; # upstream 이름 proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; ... } ... ..
Architecture & Tool
2024. 4. 19. 08:54