gpt4 book ai didi

nginx - 我怎样才能告诉nginx默默地忽略不匹配的请求并让它们超时而不是给出404

转载 作者:行者123 更新时间:2023-12-02 00:50:44 26 4
gpt4 key购买 nike

我有一个服务器 block 监听特定服务器名称上的 80 端口请求以及一些位置指令。如何让 nginx 将任何不匹配的请求视为未收到,即让它超时?目前这些请求会被处理为 404 错误

最佳答案

有一种方法可以忽略每个请求并告诉 nginx 不响应:

server {
listen 80 default_server;
return 444;
}

记录于此:http://nginx.org/en/docs/http/ngx_http_rewrite_module.html

The non-standard code 444 closes a connection without sending a response header.

关于nginx - 我怎样才能告诉nginx默默地忽略不匹配的请求并让它们超时而不是给出404,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11539121/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com