本文共 1176 字,大约阅读时间需要 3 分钟。
例如:
upstream backend { server 192.168.0.14; server 192.168.0.15; } 例如:
upstream backend { server 192.168.0.14 weight=10; server 192.168.0.15 weight=10; } 例如:
upstream backend { ip_hash; server 192.168.0.14:88; server 192.168.0.15:80; } 例如:
upstream backend { server squid1:3128; server squid2:3128; hash $request_uri; hash_method crc32; } 例如:
upstream backend { server server1; server server2; fair; } 在需要使用负载均衡的server中增加:
proxy_pass http://backend/;
每个设备的状态设置为:
1. down 表示单前的server暂时不参与负载 2. weight 默认为1,weight越大,负载的权重就越大 3. max_fails 允许请求失败的次数,默认为1。当超过最大次数时,返回proxy_next_upstream 模块定义的错误 4. fail_timeout:max_fails次失败后,暂停的时间 5. backup:其它所有的非backup机器down或者忙的时候,请求backup机器。所以这台机器压力会最轻nginx支持同时设置多组的负载均衡,用来给不用的server来使用。client_body_in_file_only 设置为On 可以讲client post过来的数据记录到文件中用来做debugclient_body_temp_path 设置记录文件的目录 可以设置最多3层目录location对URL进行匹配.可以进行重定向或者进行新的代理 负载均衡
转载地址:http://ukjfk.baihongyu.com/