mirror of
https://github.com/CPunch/openpunk-ansible.git
synced 2024-11-14 20:00:05 +00:00
18 lines
286 B
YAML
18 lines
286 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
|