Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

mod_evasive for nginx?

I am using mod_evasive for apache which manages DOS, that is it automatically blacklist IP's that do too much http queries during a delta time.

Does it exists on nginx ?

like image 466
Eric Avatar asked Jan 31 '11 09:01

Eric


1 Answers

No, it doesn't. But you can use ngx_http_limit_req_module. For more information about this module, look for documentation: https://nginx.org/en/docs/http/ngx_http_limit_req_module.html

like image 122
CyberDem0n Avatar answered Sep 21 '22 14:09

CyberDem0n