上传者: 38508497
|
上传时间: 2021-12-25 22:26:11
|
文件大小: 48KB
|
文件类型: -
1、要禁止所有IP访问a1.htm a2.htm a3.htm这个三个页面在location可以这样写
location ~* /(a1.htm|a2.htm|a3.htm)$ {
deny all;
condition………;
}
2、只允许指定的ip访问a1.htm a2.htm a3.htm这个三个页面,其他IP的访问都拒绝
location ~* /(a1.htm|a2.htm|a3.htm)$ {
allow 10.0.0.2;
deny all;
condition………;
}
这种设置只有ip地址为10.0.0.2的主机可以放问这三个页面,其他的ip都被拒绝了。
其