Notice
Recent Posts
Link
Tags
- 스프링
- 문자열
- string
- PYTHON
- DI
- 1차원 배열
- Docker
- jpa
- spring security 6
- mysql
- static
- 자바
- 프로그래머스
- @transactional
- springboot
- spring mvc
- sql
- hibernate
- java
- 스프링부트
- spring
- AWS
- nginx
- 데이터베이스
- ORM
- SSL
- join
- spring boot
- Django
- select
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Archives
목록zero downtime (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