码迷,mamicode.com
首页 > 其他好文 > 详细

nginx 配置反向代理

时间:2017-05-08 14:43:39      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:反向代理

1)编辑vi nginx.conf,找到http{} 在里面加入

    

    upstream ucentertomcat {

    server 192.168.100.108:8080 weight=1;

    server 192.168.100.105:8080 weight=1;

    server 192.168.100.106:8080 weight=1;

    }

    在server{}里面加入

    

    location /ucenter {

            proxy_pass   http://ucentertomcat;

            index  index.html index.htm;

    }


nginx 配置反向代理

标签:反向代理

原文地址:http://61455626.blog.51cto.com/1360190/1923060

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!