种心收默

在nginx中,禁止IP访问.只可以使用域名访问.

if ($host ~* "\d+\.\d+\.\d+\.\d+"){
    return 400;
}

其实说白了, 就是进行host主机头过滤,使用正则来判断下.

posted on 2014-08-26 09:18  samcao  阅读(179)  评论(0编辑  收藏  举报

导航