nginx負載均衡session共享解決:ip_hash

    聲明:此方法只適用於nginx不是最前端的服務器,並且nginx的後端沒有其它方式的負載均衡前端

    只須要在nginx.conf的負載配置中加上一行 ip_hash;nginx

例:後端

 upstream tomcat_server{
        server localhost:8080 weight=1;
        server localhost:8081 weight=2;
        ip_hash;
    }
 tomcat

相關文章
相關標籤/搜索