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