nginx 负载均衡配置

一、当一个服务器不能满足大量用户的请求是,你可能需要用nginx为你的请求分发到不同的机器上,可以通过nginx来配置不同服务器可以承载不同的请求量。

1.安装: apt-get install nginx
2.配置文件路径: /usr/share/nginx/nginx.conf
3.启动: nginx -c nginx.conf

假设你要将nginx配置到a.host.com下面,并且你有b.host.com:8000和c.host.com:8000两台机器做业务服务程序配置如下:

events {
  worker_connections  1024;  ## Default: 1024
}
http{
    upstream   a.host.name{   
        server    b.host.com:8000  weight=1 fail_timeout=2s max_fails=2; 
        server    c.host.com:8000  weight=2 fail_timeout=2s max_fails=2;  
    }     

    server {  
        listen       8080; 
        server_name  a.host.com ;
    
        location / {
            proxy_pass http://a.host.com;  
            proxy_redirect default;  
            proxy_connect_timeout 3s;
        }  

        error_page   500 502 503 504  /50x.html;  
        location = /50x.html {  
            root   html;  
        }  
    }
}

以上的配置会将a.host.com:8080收到的请求分别安装权重weight分发到b.host.com:8000和c.host.com:8000两台服务器上,fail_timeout–分发到server的超时时间,max_fails最多重试次数。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值