Matrix Docker Ansible eploy
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

22 linhas
705 B

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