nginx 四层访问控制


nginx 四层访问控制

访问控制基于ngx_http_access_module实现,可以通过匹配客户端IP地址进行限制

location /about {
	  alias /usr/share/nginx/html/about/index.html;
	  index index.html;
	  deny 192.168.1.1;
	  allow 192.168.50.0/24;
	  allow 10.1.1.0/16;
	  deny all;  #先允许小部分,再拒绝大部分
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/282909.html

(0)
上一篇 2022年8月29日
下一篇 2022年8月29日

相关推荐

发表回复

登录后才能评论