nginx 禁止ip访问与关闭空主机头

发布时间:2019-07-26编辑:脚本学堂
本文介绍了nginx禁止ip访问,以及nginx中关闭空主机头的方法,别人通过ip或未知域名访问你的网站时,禁止显示任何有效内容,返回500错误。

在做nginx安全配置时,有时会用到nginx禁止ip访问的配置方法,本节先看看nginx的默认虚拟主机在用户通过ip访问,或者通过未设置的域名访问(比如有人把他自己的域名指向了你的ip)时,在server的设置中添加这一行:
listen 80 default;
后面的default参数表示这个是默认虚拟主机。
nginx 禁止ip访问这个设置非常有用。
比如别人通过ip或者未知域名访问你的网站时,希望禁止显示任何有效内容,可以给他返回500。

目前国内很多机房都要求网站主关闭空主机头,防止未备案的域名指向过来造成麻烦。(linux/linuxjinzhiipfangwen/ target=_blank class=infotextkey>linux禁止ip访问)

设置:
 

server { 
listen 80 default; 
return 500; 
}
 

也可以把这些流量收集起来,导入自己的网站,跳转设置:
 

server { 
 listen 80 default; 
 rewrite ^(.*) http://www.plcxue.com permanent; 
   }
 

按照如上设置后,确实不能通过IP访问服务器了,但是在应该用中出现当server_name后跟多个域名时,其中一个域名怎么都无法访问,设置如下:
 

server  { 
  listen 80; 
  server_name www.plcxue.com plcxue.com
    }

没更改之前,通过server_name 中的www.plcxue.com plcxue.com均可访问服务器,加入Nginx 禁止IP访问的设置后,通过abc.com无法访问服务器了,www.plcxue.com可以访问,用 Nginx -t 检测配置文件会提示warning:
   [warn]: conflicting server name “abc.com” on 0.0.0.0:80,
ignored 
   the configuration file /usr/local/webserver/Nginx/conf/
Nginx.conf syntax is ok 
   configuration file /usr/local/webserver/Nginx/conf/Nginx.
conf test is successful
 
最后通过在listen 80 default;后再加server_name _;解决,形式如下:
 

#禁止IP访问     server  { 
 listen 80 default; 
 server_name _; 
 server_name www.plcxue.com plcxue.com
return 500; 
}
 

这样,通过plcxue.com就能访问服务器了。

nginx禁止IP访问,关闭空主机头

关闭空主机头,防止未备案的域名指向过来造成麻烦,设置:
在lnmp的nginx的配置文件nginx.conf 添加一段规则
vi /usr/local/nginx/conf/nginx.conf
 

server
{
listen 80 default;
server_name _;
return 500;
}
 

放到server的最前面,注意是添加server不是修改server 添加完成后就可以用域名访问了,IP是禁止访问的。