Allow all outbound HTTPS on host server firewall setup
This commit is contained in:
parent
f4cc8225f9
commit
60138193a9
|
|
@ -171,6 +171,13 @@
|
||||||
destination_port: 9090
|
destination_port: 9090
|
||||||
jump: ACCEPT
|
jump: ACCEPT
|
||||||
|
|
||||||
|
- name: Accept outbound HTTPS traffic
|
||||||
|
ansible.builtin.iptables:
|
||||||
|
chain: OUTPUT
|
||||||
|
protocol: tcp
|
||||||
|
destination_port: 443
|
||||||
|
jump: ACCEPT
|
||||||
|
|
||||||
- name: Reset doas configuration back to default
|
- name: Reset doas configuration back to default
|
||||||
become: yes
|
become: yes
|
||||||
template:
|
template:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue