blob: 7d411fe942d7510bd8517f483588a29be6d4d9a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
- name: allow http
ufw:
rule: allow
port: '80'
proto: tcp
- name: allow https
ufw:
rule: allow
port: '443'
proto: tcp
- name: restart ufw
service: name=ufw state=restarted enabled=yes
|