2025-02-22 13:42:23 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
matrix_coturn_turn_uris: |-
|
|
|
|
{{
|
|
|
|
([
|
|
|
|
'turns:' + matrix_server_fqn_matrix + '?transport=udp',
|
|
|
|
'turns:' + matrix_server_fqn_matrix + '?transport=tcp',
|
|
|
|
] if matrix_coturn_tls_enabled else [])
|
|
|
|
+
|
|
|
|
([
|
|
|
|
'turn:' + matrix_server_fqn_matrix + '?transport=udp',
|
2025-02-22 13:44:14 +02:00
|
|
|
] if (matrix_coturn_container_stun_plain_host_bind_port_udp != '' or matrix_coturn_container_network == 'host') else [])
|
|
|
|
+
|
|
|
|
([
|
2025-02-22 13:42:23 +02:00
|
|
|
'turn:' + matrix_server_fqn_matrix + '?transport=tcp',
|
2025-02-22 13:44:14 +02:00
|
|
|
] if (matrix_coturn_container_stun_plain_host_bind_port_tcp != '' or matrix_coturn_container_network == 'host') else [])
|
2025-02-22 13:42:23 +02:00
|
|
|
}}
|