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;
# }
#}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.