Revert Coturn Address Change, add new Addresses var (#2)

This commit is contained in:
heftyzauk
2022-04-11 11:50:41 +01:00
committed by GitHub
parent da31eecdb7
commit 268b079374
3 changed files with 5 additions and 3 deletions

View File

@ -64,7 +64,8 @@ matrix_coturn_turn_udp_max_port: 49172
matrix_coturn_turn_static_auth_secret: ""
# The external IP address of the machine where Coturn is.
matrix_coturn_turn_external_ip_address: []
matrix_coturn_turn_external_ip_address: ''
matrix_coturn_turn_external_ip_addresses: []
matrix_coturn_allowed_peer_ips: []
matrix_coturn_denied_peer_ips: []

View File

@ -5,7 +5,7 @@ realm=turn.{{ matrix_server_fqn_matrix }}
min-port={{ matrix_coturn_turn_udp_min_port }}
max-port={{ matrix_coturn_turn_udp_max_port }}
{% for ip in matrix_coturn_turn_external_ip_address %}
{% for ip in matrix_coturn_turn_external_ip_addresses %}
external-ip={{ ip }}
{% endfor %}