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

nginx location if 中使用proxy_pass

时间:2016-05-06 16:33:47      阅读:3773      评论:0      收藏:0      [点我收藏+]

标签:nginx

最近测试怎么在nginx 中通过固定IP来访问某个地址,话不多说直接上代码:


location  ^~ /
{
    if ($request_uri ~ /)
    {
        set $bucketid $1;
    }
    if ($remote_addr ~* "192.168.114.146|192.168.114.145|192.168.114.144|192.168.11.51|192.168.11.125|192.168.58.3|192.168.11.42")
    {
        proxy_pass http://192.168.113.168:9085$1;
    }
    if ($remote_addr ~* "192.168.11.64")
    {
        proxy_pass http://192.168.113.167:9085$1;
    }
    include proxy.conf;
    access_log logs/web.log main;
}


nginx location if 中使用proxy_pass

标签:nginx

原文地址:http://liuyusheng.blog.51cto.com/10570745/1770622

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