Matrix Docker Ansible eploy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

22 líneas
713 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_server_fqn_matrix + '?transport=udp',
  9. 'turns:' + matrix_server_fqn_matrix + '?transport=tcp',
  10. ] if matrix_coturn_tls_enabled else [])
  11. +
  12. ([
  13. 'turn:' + matrix_server_fqn_matrix + '?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_server_fqn_matrix + '?transport=tcp',
  18. ] if (matrix_coturn_container_stun_plain_host_bind_port_tcp != '' or matrix_coturn_container_network == 'host') else [])
  19. }}