技巧杂烩 · 

Nginx 添加 ip 白名单

Nginx 快速实现 ip 白名单!


使用 Nginx 的 allow 和 deny 快速的实现ip白名单,Nginx 站点配置文件:

server {
	...
	allow 127.0.0.1;
	deny all;
	...
}