Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

22 wiersze
635 B

  1. # SPDX-FileCopyrightText: 2025 Slavi Pantaleev
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. coturn_turn_uris: |-
  6. {{
  7. ([
  8. 'turns:' + coturn_hostname + '?transport=udp',
  9. 'turns:' + coturn_hostname + '?transport=tcp',
  10. ] if coturn_tls_enabled else [])
  11. +
  12. ([
  13. 'turn:' + coturn_hostname + '?transport=udp',
  14. ] if (coturn_container_stun_plain_host_bind_port_udp != '' or coturn_container_network == 'host') else [])
  15. +
  16. ([
  17. 'turn:' + coturn_hostname + '?transport=tcp',
  18. ] if (coturn_container_stun_plain_host_bind_port_tcp != '' or coturn_container_network == 'host') else [])
  19. }}