|
- # SPDX-FileCopyrightText: 2025 Slavi Pantaleev
- #
- # SPDX-License-Identifier: AGPL-3.0-or-later
-
- ---
-
- coturn_turn_uris: |-
- {{
- ([
- 'turns:' + coturn_hostname + '?transport=udp',
- 'turns:' + coturn_hostname + '?transport=tcp',
- ] if coturn_tls_enabled else [])
- +
- ([
- 'turn:' + coturn_hostname + '?transport=udp',
- ] if (coturn_container_stun_plain_host_bind_port_udp != '' or coturn_container_network == 'host') else [])
- +
- ([
- 'turn:' + coturn_hostname + '?transport=tcp',
- ] if (coturn_container_stun_plain_host_bind_port_tcp != '' or coturn_container_network == 'host') else [])
- }}
|