码迷,mamicode.com
首页 > 其他好文 > 详细

【Nginx学习笔记】02_nginx配置,整合tomcat

时间:2015-09-16 20:18:02      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:集群   nginx   tomcat   

     使用版本:nginx/1.9.4;    


    /usr/local/nginx/conf/nginx.conf目录下关键配置如下:

    #配置多台tomcat服务器,weight参数表示比重,比重越高,访问率越高。
    upstream proxy_tomcats{
        server localhost:10001 weight=1;
        server localhost:10002 weight=2;
        server localhost:10003 weight=3;
     }
    
    #server节点,配置nginx代理服务。
    server {
        listen       80; #nginx服务的端口
        server_name  proxy_tomcats; #nginx所代理的服务器,proxy_tomcats是上面设置的参数 
        charset utf-8;
       
        location / {
            proxy_pass  #nginx所代理的应用地址 
        }
       
        error_page   500 502 503 504  /50x.html;
        location = /50x.html 
        {
            root html;
         }
    }



本文出自 “宁静致远” 博客,请务必保留此出处http://lizhuquan0769.blog.51cto.com/2591147/1695360

【Nginx学习笔记】02_nginx配置,整合tomcat

标签:集群   nginx   tomcat   

原文地址:http://lizhuquan0769.blog.51cto.com/2591147/1695360

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!