Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

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