标签:nginx
在server段添加一些代码
if ( $http_clientip = 106.120.173.120 ) {
return 403;
}
如果使用反向代理,使用deny禁止ip访问不会生效。
参考博文:https://www.cnblogs.com/saneri/p/6257188.html
nginx禁止特定IP访问
原文地址:http://linux10000.blog.51cto.com/6338282/1983550