일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- nginx
- NVM
- 양살치살
- Hook
- BDD
- 오삼철판볶음
- docker
- 신미낙지
- NapuCon2016
- MariaDB
- Spring
- 강다니엘
- 고릴라볼링장
- 판교
- Replacation
- react
- react component
- SpockFramework
- 전나라동동공주
- 진1926
- Java
- SpringCamp2019
- SetMail
- 바스트로37
- 오뚜기숯불소금구이
- useEffect
- State
- SpringCamp
- SpringCamp2017
- DockerCompose
- Today
- Total
목록nginx (2)
Note
upstream groupName { ip_hash; server {ip}:{port} weight=5; server {ip}:{port}; server {ip}:{port} backup; } server { listen 80; server_name your.domain.com; location / { ... proxy_pass http://groupName; } } option ip_hash: IP를 Hash해서 특정 클라이언트는 특정 서버로만 연결 least_conn: 가장 클라이언트 연결 갯수가 적은 서버로 전달하는 설정 keepalive n: n개의 커넥션을 유지 slow_start=n: 최근에 장애로부터 복구한 서버에 요청이 폭주하지 않도록 slow_start 에 주어진 시간만큼 기다려 줌 we..
/etc/nginx/의 하위 디렉토리인 conf.d로 들어가서 xxxx.conf 파일 생성 해당 파일에 아래와 같은 정보 입력 server { listen 80; server_name your.domain.com; access_log /var/log/admin/access.log; error_log /var/log/admin/error.log; location / { proxy_pass_header Server; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Scheme $scheme; proxy_pass http://127.0.0.1:8080; } } 저장 후 nginx 재시작 se..