Matrix Docker Ansible eploy
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

35 lignes
1.4 KiB

  1. matrix_coturn_enabled: true
  2. matrix_coturn_docker_image: "instrumentisto/coturn:4.5.1.1"
  3. # The Docker network that Coturn would be put into.
  4. #
  5. # Because Coturn relays traffic to unvalidated IP addresses,
  6. # using a dedicated network, isolated from other Docker (and local) services is preferrable.
  7. #
  8. # Setting up deny/allow rules with `matrix_coturn_allowed_peer_ips`/`matrix_coturn_denied_peer_ips` is also
  9. # possible for achieving such isolation, but is more complicated due to the dynamic nature of Docker networking.
  10. matrix_coturn_docker_network: "matrix-coturn"
  11. matrix_coturn_base_path: "{{ matrix_base_data_path }}/coturn"
  12. matrix_coturn_config_path: "{{ matrix_coturn_base_path }}/turnserver.conf"
  13. # List of systemd services that matrix-coturn.service depends on
  14. matrix_coturn_systemd_required_services_list: ['docker.service']
  15. # A shared secret (between Synapse and Coturn) used for authentication.
  16. # You can put any string here, but generating a strong one is preferred (e.g. `pwgen -s 64 1`).
  17. matrix_coturn_turn_static_auth_secret: ""
  18. # UDP port-range to use for TURN
  19. matrix_coturn_turn_udp_min_port: 49152
  20. matrix_coturn_turn_udp_max_port: 49172
  21. # The external IP address of the machine where Coturn is.
  22. matrix_coturn_turn_external_ip_address: ''
  23. matrix_coturn_allowed_peer_ips: []
  24. matrix_coturn_denied_peer_ips: []
  25. matrix_coturn_user_quota: null
  26. matrix_coturn_total_quota: null