Nginx负载均衡upstream这样配置对不对

......
upstream testserver {
server 192.168.0.85:8080 weight=3;
server 192.168.0.85:8082 weight=3;
}

upstream ttt{
     server 192.168.0.85:8082 weight=3;
     ip_hash;
}

server {
    listen       80;
    server_name  hadoop1;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location /hzyl{
     proxy_pass http://ttt;
    }

    location /HisImpServ{

        proxy_pass http://testserver;
            }


            ...............

            这样配置了以后
            我访问 /hyzl 和/HisImpServ都在转圈圈

转圈圈应该和nginx配置没有关系,直接访问你的后端服务器试试,能正常访问么?

顺便说一下,

weightip_hash不能同时用

upstream ttt{
     server 192.168.0.85:8082 weight=3;
     ip_hash;
}

参考:

Until versions 1.3.1 and 1.2.2, it was not possible to specify a weight for servers using the ip_hash load balancing method.