码迷,mamicode.com
首页 > 系统相关 > 详细

Linux Nginx负载均衡配置

时间:2015-11-17 19:34:46      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

  在nginx配置文件"/etc/nginx/nginx.conf" http节点增加以下内容:

   如域名:admin.wxh.com负载到两台服务器

http {

    //...省略此行上面其他配置内容
    upstream admin.wxh.com{
        server 10.0.0.11:9000 weight=1;
        server 10.0.0.11:8000 weight=3;
    }
    
    server{
        listen 80;
        server_name admin.wxh.com;
         location / { 
           proxy_pass         http://admin.mewxh.com; 
           proxy_set_header   Host             $host; 
           proxy_set_header   X-Real-IP        $remote_addr; 
           proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for; 
        } 
    } 

}


Linux Nginx负载均衡配置

标签:

原文地址:http://my.oschina.net/moks/blog/531675

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