nginx 设置只能通过域名访问,禁止通过ip访问

实测效果:

  nginx 设置只能通过域名访问,禁止通过ip访问_第1张图片

 

方法:

  在ngnix的配置文件nginx.conf中,增加如下判断:  

    if ($host != '域名'){
      return 444;
    }

具体位置:

nginx 设置只能通过域名访问,禁止通过ip访问_第2张图片

 

 

  

 

转载于:https://www.cnblogs.com/irishua/p/11551907.html

你可能感兴趣的:(nginx 设置只能通过域名访问,禁止通过ip访问)