텐 진 건강 검진

1618 단어 Nginx
Nginx 의 건강 검진 은 정말 초라 하기 짝 이 없습니다. Nginx 의 건강 검진 설정 은 다음 과 같 습 니 다.
nginx. conf 파일 에서
location /{ 
   stub_status  on;
}

그리고 Tengine 의 건강 검진 이 좋 습 니 다. 공식 문서 에서 도 말 했 듯 이 nginx. conf 파일 에서 설정 되 었 습 니 다. 절차: 1. upstream 에서 다음 과 같이 설정 합 니 다.
upstream cluster1 {
   server 192.168.0.1:80;
   server 192.168.0.2:80;
   check interval=3000 rise=2 fall=5 timeout=1000 type=http;
   check_http_send "HEAD / HTTP/1.0\r
\r
"
; check_http_expect_alive http_2xx http_3xx; }

2. status 의 location 설정
location /status {
   check_status;
   access_log   off;
   allow SOME.IP.ADD.RESS;
   deny all;
}

3. nginx 4 를 다시 시작 하고 http: / 도 메 인 이름 / status 를 입력 하여 보기
아직 잘 모 르 시 면 공식 데모, 주 소 를 확인 하 실 수 있 습 니 다.http://tengine.taobao.org/document_cn/http_upstream_check_cn.html

좋은 웹페이지 즐겨찾기