mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-02-24 16:04:09 +01:00
15 lines
360 B
YAML
15 lines
360 B
YAML
|
---
|
||
|
|
||
|
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',
|
||
|
'turn:' + matrix_server_fqn_matrix + '?transport=tcp',
|
||
|
])
|
||
|
}}
|