Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
618 B

  1. ---
  2. matrix_coturn_turn_uris: |-
  3. {{
  4. ([
  5. 'turns:' + matrix_server_fqn_matrix + '?transport=udp',
  6. 'turns:' + matrix_server_fqn_matrix + '?transport=tcp',
  7. ] if matrix_coturn_tls_enabled else [])
  8. +
  9. ([
  10. 'turn:' + matrix_server_fqn_matrix + '?transport=udp',
  11. ] if (matrix_coturn_container_stun_plain_host_bind_port_udp != '' or matrix_coturn_container_network == 'host') else [])
  12. +
  13. ([
  14. 'turn:' + matrix_server_fqn_matrix + '?transport=tcp',
  15. ] if (matrix_coturn_container_stun_plain_host_bind_port_tcp != '' or matrix_coturn_container_network == 'host') else [])
  16. }}