Install fail2ban

This commit is contained in:
Jake Howard 2020-03-13 23:08:26 +00:00
parent 92af315e69
commit 708250005a
Signed by: jake
GPG Key ID: 57AFB45680EDD477
4 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,4 @@
[Definition]
failregex = ^.*haproxy\[[0-9]+\]: <HOST>:.*$
ignoreregex =

View File

@ -0,0 +1,8 @@
[haproxy]
enabled = true
bantime = 600
findtime = 120
maxretry = 10
filter = haproxy-basic
logpath = /var/log/haproxy.log
port = http,https

View File

@ -0,0 +1,29 @@
- name: Install fail2ban
apt:
name: fail2ban
become: true
become_user: root
- name: fail2ban filter
template:
src: files/haproxy-fail2ban-filter.conf
dest: /etc/fail2ban/filter.d/haproxy-basic.conf
become: true
become_user: root
register: fail2ban_filter
- name: fail2ban jail
template:
src: files/haproxy-fail2ban-jail.conf
dest: /etc/fail2ban/jail.d/haproxy.conf
become: true
become_user: root
register: fail2ban_jail
- name: Restart fail2ban
service:
name: haproxy
state: restarted
become: true
become_user: root
when: fail2ban_filter.changed or fail2ban_jail.changed

View File

@ -3,3 +3,6 @@
- name: Configure wireguard
include: wireguard.yml
- name: Configure fail2ban
include: fail2ban.yml