nginx通过http_host拒绝非法请求

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx通过http_host拒绝非法请求相关的知识,希望对你有一定的参考价值。

通过http_host字段拒绝非法请求

nginx的运行过程中,查看日志会发现有很多请求并不是请求你的服务器,那么你应该注意了,有可能是非法请求,要拒绝这种请求就需要通过判断http_host来阻断请求。

代码如下:

server {
       server_name  www.test.com;
       listen       8888;
        if ($http_host !~ "www.test.com:8888")  {
        return 403;
        }
       include /etc/nginx/default.d/*.conf;
       location / {
       root /var/nginx/html;
       index index.php index.html index.htm;
       }
}

这样,就无法通过伪造请求头来请求你的服务器啦!

以上是关于nginx通过http_host拒绝非法请求的主要内容,如果未能解决你的问题,请参考以下文章

NGINX实现图片防盗链(REFERER指令)

nginx 之$proxy_host|$host|$http_host区别

nginx 转发请求到指定网站

Apache - 允许一个通配符 URL,拒绝所有其他请求

nginx+lua+redis实现GET请求接口之黑名单

nginx+lua+redis实现post请求接口之黑名单(一)