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

nginx禁止特定IP访问

时间:2017-11-20 19:03:10      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:nginx

在server段添加一些代码

if ( $http_clientip = 106.120.173.120 ) {

return 403;

}


如果使用反向代理,使用deny禁止ip访问不会生效。


参考博文:https://www.cnblogs.com/saneri/p/6257188.html


nginx禁止特定IP访问

标签:nginx

原文地址:http://linux10000.blog.51cto.com/6338282/1983550

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