logdetective: allow http and https in the firewall
This commit is contained in:
parent
abee7a2c5f
commit
42853033ba
1 changed files with 9 additions and 0 deletions
|
@ -124,3 +124,12 @@
|
||||||
port: 8080/tcp
|
port: 8080/tcp
|
||||||
permanent: true
|
permanent: true
|
||||||
state: enabled
|
state: enabled
|
||||||
|
|
||||||
|
- name: Allow HTTP and HTTPS in firewall
|
||||||
|
ansible.posix.firewalld:
|
||||||
|
service: "{{ item }}"
|
||||||
|
permanent: true
|
||||||
|
state: enabled
|
||||||
|
with_items:
|
||||||
|
- http
|
||||||
|
- https
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue