如何使用NGINX阻止洪水请求?

前端之家收集整理的这篇文章主要介绍了如何使用NGINX阻止洪水请求?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在我的VPS中使用Nginx作为Web服务器,我想将其配置为阻止泛洪请求.我找到了HttpLimitReqModule模块,但我需要避免向用户发送回复.

如果请求数高于设置,我看到模块发回503 http错误.我可以阻止向用户发送回复吗?我会关闭连接.

(我认为它快得多)

谢谢

最佳答案
http://nginx.org/en/docs/http/ngx_http_rewrite_module.html#return

Stops 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;可以帮助.

原文链接:https://www.f2er.com/nginx/435244.html

猜你在找的Nginx相关文章