nginx 설정 역방향 에이전트 예제

3741 단어
환경:
nginx1:192.168.68.41
tomcat1:192.168.68.43
tomcat2:192.168.68.45
nginx 는 인터넷 에 많은 튜 토리 얼 을 설치 합 니 다. 저 는 yum 으로 설 치 했 습 니 다.
nginx 설정:
vim /etc/nginx/conf.d/default.conf 
내용:
#       
gzip              on;  
gzip_min_length   1000;  
gzip_types        text/plain text/css application/x-javascript;

#            
#weigth      ,             
upstream hello{
    server 192.168.68.43:8080 weight=1;
    server 192.168.68.45:8080 weight=1;            
}
   
server {
    #   80  
    listen       80;
    server_name  localhost;
    #    Nginx     
    location /nginxstatus{
         stub_status on;
         access_log on;
         auth_basic "nginxstatus";
         auth_basic_user_file htpasswd;
    }
    #   jsp   ,tomcat       jsp  
    location / {
        index index.jsp;
        proxy_pass   http://hello;    #         , upstream     
        #               
        proxy_redirect             off; 
        #   Web       X-Forwarded-For      IP
        proxy_set_header           Host $host; 
        proxy_set_header           X-Real-IP $remote_addr; 
        proxy_set_header           X-Forwarded-For $proxy_add_x_forwarded_for; 
        client_max_body_size       10m; #                
        client_body_buffer_size    128k; #                  
        proxy_connect_timeout      300; #nginx            (      )
        proxy_send_timeout         300; #           (      )
        proxy_read_timeout         300; #     ,         (      )
        proxy_buffer_size          4k; #       (nginx)             
        proxy_buffers              4 32k; #proxy_buffers   ,     32k    ,    
        proxy_busy_buffers_size    64k; #        (proxy_buffers*2)
        proxy_temp_file_write_size 64k; #         ,     ,  upstream    
    }
}

 
시작:
nginx
종료:
nginx -s quit
nginx 시작 후 접근http://192.168.68.41/test/
네 비게 이 션 이 됩 니 다.http://192.168.68.43:8080/test/ 화해시키다http://192.168.68.45:8080/test/
이로써 부하 균형 을 실현 하고 단점 고장 을 피 했다.

좋은 웹페이지 즐겨찾기