-
-
Save wention/e0e9965bb113aa2db6c9a99bc14365dc to your computer and use it in GitHub Desktop.
fail2ban nginx 404 400 403 444 filter /etc/fail2ban/filter.d/nginx-4xx.conf enable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # to enable this filter add to jail.conf following (/etc/fail2ban/jail.conf) | |
| # Thanks to -> TheBarret | |
| [nginx-4xx] | |
| enabled = true | |
| port = http,https | |
| logpath = /var/log/nginx/access.log | |
| maxretry = 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # vim /etc/fail2ban/filter.d/nginx-4xx.conf | |
| [Definition] | |
| failregex = ^<HOST>.*"(GET|POST).*" (404|444|403|400) .*$ | |
| ignoreregex = | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment