logdetective: allow http and https in the firewall

This commit is contained in:
Jakub Kadlcik 2025-03-28 23:37:06 +01:00
parent abee7a2c5f
commit 42853033ba

View file

@ -124,3 +124,12 @@
port: 8080/tcp
permanent: true
state: enabled
- name: Allow HTTP and HTTPS in firewall
ansible.posix.firewalld:
service: "{{ item }}"
permanent: true
state: enabled
with_items:
- http
- https