Jake Howard
4d218248fa
Traefik can affect the edge, so blocks work there and prevent traffic hitting home network.
23 lines
538 B
YAML
23 lines
538 B
YAML
- 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
|
|
|
|
- name: Create action
|
|
template:
|
|
src: files/fail2ban/remote-action.conf
|
|
dest: /etc/fail2ban/action.d/gateway.conf
|
|
mode: 0644
|
|
become: true
|
|
notify: restart fail2ban
|