mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-24 06:03:22 +02:00
9 lines
343 B
YAML
9 lines
343 B
YAML
![]() |
---
|
||
|
|
||
|
- name: Handle jitsi confmapper port
|
||
|
iptables_raw:
|
||
|
name: jitsi_confmapper_ports
|
||
|
state: "{{ (jitsi_confmapper_src_ip | length > 0) | ternary('present','absent') }}"
|
||
|
rules: "-A INPUT -m state --state NEW -p tcp --dport {{ jitsi_confmapper_port }} -s {{ jitsi_confmapper_src_ip | join(',') }} -j ACCEPT"
|
||
|
tags: firewall,jitsi
|