美文网首页我爱编程
nginx负载均衡搭建部署

nginx负载均衡搭建部署

作者: 阿文很淘气 | 来源:发表于2018-06-21 15:33 被阅读2次

    so easy.

    step1:进入目nginx安装目录   cd /usr/local/nginx/conf

    step2:修改nginx.conf

    upstream 127.0.0.1 { #服务器集群名字

    server    127.0.0.1:18080  weight=1;#服务器配置  weight是权重的意思,权重越大,分配的概率越大。

    server    127.0.0.1:28080  weight=2;

    }

    location / {

    #此处配置的域名必须与upstream的域名一致,才能转发。

                proxy_pass http://127.0.0.1;  #这里要和upstream 域名一样

            }

    相关文章

      网友评论

        本文标题:nginx负载均衡搭建部署

        本文链接:https://www.haomeiwen.com/subject/eqaqyftx.html