2022-12-29 21:13:31 +00:00
|
|
|
# vim: ft=yaml.ansible
|
2022-11-10 20:48:24 +00:00
|
|
|
---
|
|
|
|
- name: Setup firewall with UFW
|
|
|
|
community.general.ufw:
|
|
|
|
state: enabled
|
|
|
|
policy: deny
|
2022-11-22 20:37:37 +00:00
|
|
|
|
2022-11-10 20:48:24 +00:00
|
|
|
- name: Allow necessary ports
|
|
|
|
community.general.ufw:
|
|
|
|
rule: allow
|
2022-11-22 20:22:23 +00:00
|
|
|
port: "{{ item.port }}"
|
2022-11-22 20:37:37 +00:00
|
|
|
proto: "{{ item.proto | default('tcp') }}"
|
2022-11-10 20:48:24 +00:00
|
|
|
loop:
|
2022-11-22 20:37:37 +00:00
|
|
|
- port: 22 # Gitea SSH
|
|
|
|
- port: 80 # HTTP
|
|
|
|
- port: 443 # HTTPS
|
|
|
|
- port: 389 # OpenLDAP
|
|
|
|
- port: 636 # OpenLDAP
|
|
|
|
- port: 25 # Email
|
|
|
|
- port: 465 # Email
|
|
|
|
- port: 587 # Email
|
|
|
|
- port: 993 # Email
|
|
|
|
- port: 19022 # SSH
|