赞
踩
配置如下:
server {
listen 80;
server_name 192.168.0.32;
if ($http_Host !~* ^192.168.0.32$){
return 403;
}
#如果要配置多个合法 地址 则:
if ($http_Host !~* ^192.168.0.32|127.0.0.1|www.test.com|localhost$) {
return 403;
}
}
一定要注意 if后面要有空格。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。