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.
 
 

46 líneas
1.1 KiB

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