Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

40 строки
950 B

  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. {% else %}
  16. no-tls
  17. no-dtls
  18. {% endif %}
  19. prod
  20. no-tcp-relay
  21. {% if matrix_coturn_user_quota != None %}
  22. user-quota={{ matrix_coturn_user_quota }}
  23. {% endif %}
  24. {% if matrix_coturn_total_quota != None %}
  25. total-quota={{ matrix_coturn_total_quota }}
  26. {% endif %}
  27. {% for ip_range in matrix_coturn_denied_peer_ips %}
  28. denied-peer-ip={{ ip_range }}
  29. {% endfor %}
  30. {% for ip_range in matrix_coturn_allowed_peer_ips %}
  31. allowed-peer-ip={{ ip_range }}
  32. {% endfor %}