Nginx 설치 제3자 모듈 checkupstream-module

3360 단어 nginx

nginx 버 전:
nginx-1.6.3.tar.gz
check_upstream - module 다운로드 링크:
https://github.com/yaoweibin/nginx_upstream_check_module
 
처음에 nginx - 1.10.1 과 nginx 1.11.1 을 시 도 했 는데 패 치 를 할 때 모두 잘못 보 고 했 습 니 다. nginx 1.6.3 패 치 에 성 공 했 습 니 다.
 
단계:
다운로드 nginx - 1.6.3. tar. gz, nginxupstream_check_module - master. zip 다음 / root 디 렉 터 리 에 두 겠 습 니 다.
 
1. 압축 풀기 nginx - 1.6.3. tar. gz 와 nginxupstream_check_module-master.zip
#tar -zxvf nginx-1.6.3.tar.gz
#unzip nginx_upstream_check_module-master.zip
2. 패 치
#patch  -p1 < /root/nginx_upstream_check_module-master/check_1.5.12+.patch
저 는 1.6.3 버 전의 nginx 를 사용 하기 때문에 여 기 는 1.5.12 + 를 사용 합 니 다.
#cd nginx-1.6.3
#./configure --prefix=/mnt/nginx --with-http_ssl_module --add-module=/root/nginx_upstream_check_module-master
#make && make install
 
3. 그 다음은 프로필 을 바 꾸 는 것 입 니 다.
 

[root@iZ234awldzeZ nginx]# cat conf/nginx.conf  
#user nobody;
worker_processes 2;

error_log logs/error.log;
pid logs/nginx.pid;


events {
use epoll;
worker_connections 12500;
}


http {
include mime.types;
default_type application/octet-stream;

log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';

access_log logs/access.log main;

sendfile on;
#tcp_nopush on;

keepalive_timeout 65;

#gzip on;

upstream cluster {
server 192.168.10.11:8080 max_fails=1 fail_timeout=3s;
server 192.168.10.12:8080 max_fails=1 fail_timeout=3s;
# server 192.168.10.13:8080 max_fails=1 fail_timeout=3s;
check interval=10000 rise=3 fall=3 timeout=1000 type=http default_down=true;
check_keepalive_requests 1;
check_http_send "HEAD / HTTP/1.0\r
\r
"; check_http_expect_alive http_2xx http_3xx; } server { listen 80; server_name localhost; charset utf-8; index index.html index.htm; root /mnt/nginx/html/ews;#nginx location / { proxy_pass http://cluster; proxy_buffer_size 64k; proxy_buffers 32 32k; proxy_busy_buffers_size 128k; proxy_redirect off; proxy_set_header Host $host:$server_port; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_buffering off; proxy_connect_timeout 60; proxy_send_timeout 60; proxy_read_timeout 60; root /mnt/tomcatins/tomcat8080/webapps/ews; } location ~ .*\.(php|jsp|cgi)?$ { proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_pass http://cluster; } location ~ .*\.(html|htm|gif|jpg|jpeg|bmp|png|ico|txt|js|css)$ { root /mnt/nginx/html/ews; expires 3d; } location /check-status { check_status; access_log off; allow all; # deny all; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } # HTTPS server # #server { # listen 443 ssl; # server_name localhost; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # ssl_session_cache shared:SSL:1m; # ssl_session_timeout 5m; # ssl_ciphers HIGH:!aNULL:!MD5; # ssl_prefer_server_ciphers on; # location / { # root html; # index index.html index.htm; # } #} }

좋은 웹페이지 즐겨찾기