mirror of
https://github.com/CPunch/openpunk-ansible.git
synced 2024-11-14 11:50:06 +00:00
33 lines
573 B
YAML
33 lines
573 B
YAML
---
|
|
- name: Allow port 22
|
|
community.general.ufw:
|
|
rule: allow
|
|
port: '22'
|
|
proto: tcp
|
|
|
|
- name: Allow port 80
|
|
community.general.ufw:
|
|
rule: allow
|
|
port: '80'
|
|
proto: tcp
|
|
|
|
- name: Allow port 443
|
|
community.general.ufw:
|
|
rule: allow
|
|
port: '443'
|
|
proto: tcp
|
|
|
|
- name: Startup UFW
|
|
community.general.ufw:
|
|
state: enabled
|
|
|
|
- name: Copy fail2ban jail config
|
|
copy:
|
|
src: static/fail2ban/jails.local
|
|
dest: /etc/fail2ban/jail.d/jails.local
|
|
|
|
- name: Enable fail2ban service
|
|
systemd:
|
|
name: fail2ban
|
|
enabled: yes
|
|
state: started |