http 监听后直接抛错500
# http 区 直接抛错 500
server {
listen 80 default_server;
server_name _;
return 500;
}
策略配置
- 允许所有ip
allow all;
- 允许单个ip
allow 111.11.11.11;
- 允许部分ip
allow 111.11.11.11;
allow 111.11.11.12;
allow 111.11.11.13;
- 允许IP段
allow 111.11.11.0/11;
- 禁止所有IP
deny all;
- 禁止单个IP
deny 111.11.11.11;
- 禁止部分IP
deny 111.11.11.11;
deny 111.11.11.12;
deny 111.11.11.13;
- 允许IP段
deny 111.11.11.0/13;