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.
 
 

39 regels
919 B

  1. use-auth-secret
  2. static-auth-secret={{ matrix_coturn_turn_static_auth_secret }}
  3. realm=turn.{{ matrix_server_fqn_matrix }}
  4. min-port={{ matrix_coturn_turn_udp_min_port }}
  5. max-port={{ matrix_coturn_turn_udp_max_port }}
  6. external-ip={{ matrix_coturn_turn_external_ip_address }}
  7. log-file=stdout
  8. pidfile=/var/tmp/turnserver.pid
  9. userdb=/var/tmp/turnserver.db
  10. no-cli
  11. {% if matrix_coturn_tls_enabled %}
  12. cert={{ matrix_coturn_tls_cert_path }}
  13. pkey={{ matrix_coturn_tls_key_path }}
  14. {% else %}
  15. no-tls
  16. no-dtls
  17. {% endif %}
  18. prod
  19. no-tcp-relay
  20. {% if matrix_coturn_user_quota != None %}
  21. user-quota={{ matrix_coturn_user_quota }}
  22. {% endif %}
  23. {% if matrix_coturn_total_quota != None %}
  24. total-quota={{ matrix_coturn_total_quota }}
  25. {% endif %}
  26. {% for ip_range in matrix_coturn_denied_peer_ips %}
  27. denied-peer-ip={{ ip_range }}
  28. {% endfor %}
  29. {% for ip_range in matrix_coturn_allowed_peer_ips %}
  30. allowed-peer-ip={{ ip_range }}
  31. {% endfor %}