我在我的VPS中使用Nginx作为Web服务器,我想将其配置为阻止泛洪请求.我找到了HttpLimitReqModule模块,但我需要避免向用户发送回复.
如果请求数高于设置,我看到模块发回503 http错误.我可以阻止向用户发送回复吗?我会关闭连接.
(我认为它快得多)
谢谢
最佳答案
http://nginx.org/en/docs/http/ngx_http_rewrite_module.html#return
原文链接:https://www.f2er.com/nginx/435244.htmlStops processing and returns the specified code to a client. The
non-standard code 444 closes a connection without sending a response
header.
http://nginx.org/en/docs/http/ngx_http_limit_req_module.html#limit_req_status
Syntax: limit_req_status code;
default: limit_req_status 503;
所以limit_req_status 444;可以帮助.