1. 程式人生 > >nginx禁止特定IP訪問

nginx禁止特定IP訪問

nginx

在server段添加一些代碼

if ( $http_clientip = 106.120.173.120 ) {

return 403;

}


如果使用反向代理,使用deny禁止ip訪問不會生效。


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


nginx禁止特定IP訪問