mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-03-04 21:16:17 +00:00
22 lines
713 B
YAML
22 lines
713 B
YAML
# SPDX-FileCopyrightText: 2025 Slavi Pantaleev
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
|
|
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',
|
|
] if (matrix_coturn_container_stun_plain_host_bind_port_udp != '' or matrix_coturn_container_network == 'host') else [])
|
|
+
|
|
([
|
|
'turn:' + matrix_server_fqn_matrix + '?transport=tcp',
|
|
] if (matrix_coturn_container_stun_plain_host_bind_port_tcp != '' or matrix_coturn_container_network == 'host') else [])
|
|
}}
|