Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- java
- 주식 청약 일정
- 제이쿼리
- Oracle
- 공모주
- MYSQL
- Stock
- Stock ipo
- JavaScript
- codeigniter
- 자바
- 공모주 청약
- 주식
- html
- jquery
- 자바스크립트
- IPO
- php
- 코드이그나이터
- css
- 7월 공모주 청약 일정
- 오라클
- 공모주 청약 일정
- SQL
- 6월 공모주 청약 일정
- linux
- 맥
- 리눅스
- Eclipse
- 주식 청약
Archives
- Today
- Total
개발자의 끄적끄적
[was/nginx] nginx 로드밸런싱 설정 예제 본문
728x90
반응형
[was/nginx] nginx 로드밸런싱 설정 예제
nginx 에서
로드밸런싱 즉 서버를 이중화해서
분배를 해야하는 경우가 생기면,
아래와 같이
sites-available 에
upstream 을 이용한 프록시 설정 파일을 생성하면 됩니다!
upstream testserver { // 로드밸런싱명 (testserver)
server localhost:8081;
server localhost:8082;
}
server {
listen 80;
server_name example.com;
location / {
proxy_pass http://testserver; // upstream 에서 설정한 로드밸런싱 이름
}
}
저도 이제 테스트 단계라서
설정 변경 및 테스트 후에 공유할 내용은 다시 공유하겠습니다!
참고들하세요!
반응형
'개발 > was & server' 카테고리의 다른 글
[tomcat] 톰캣 is exceeding the 65535 bytes limit 에러 해결 방법 (0) | 2021.02.09 |
---|---|
[was/nginx] nginx 서버 버전정보 숨기는 방법 (0) | 2021.01.29 |
[was/server] apache 디렉토리 리스팅 막는 방법 (0) | 2021.01.02 |
[apache] httpd.conf ServerTokens 설정 방법 및 예제 (0) | 2020.12.31 |
[apache] internal dummy connection 로그 해결방법 (0) | 2020.12.11 |
Comments