2021-03-28 13:05:31 +01:00
|
|
|
- name: Create jail
|
|
|
|
template:
|
|
|
|
src: files/fail2ban/traefik-jail.conf
|
|
|
|
dest: /etc/fail2ban/jail.d/traefik.conf
|
|
|
|
mode: 0644
|
|
|
|
become: true
|
|
|
|
notify: restart fail2ban
|
|
|
|
|
|
|
|
- name: Create filter
|
|
|
|
template:
|
|
|
|
src: files/fail2ban/traefik-filter.conf
|
|
|
|
dest: /etc/fail2ban/filter.d/traefik.conf
|
|
|
|
mode: 0644
|
|
|
|
become: true
|
|
|
|
notify: restart fail2ban
|
2021-03-28 16:06:36 +01:00
|
|
|
|
|
|
|
- name: Create action
|
|
|
|
template:
|
|
|
|
src: files/fail2ban/remote-action.conf
|
|
|
|
dest: /etc/fail2ban/action.d/gateway.conf
|
|
|
|
mode: 0644
|
|
|
|
become: true
|
|
|
|
notify: restart fail2ban
|