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

51 строка
2.2 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 list of additional "volumes" to mount in the container.
  16. # This list gets populated dynamically at runtime. You can provide a different default value,
  17. # if you wish to mount your own files into the container.
  18. # Contains definition objects like this: `{"src": "/outside", "dst": "/inside", "options": "rw|ro|slave|.."}
  19. matrix_coturn_container_additional_volumes: []
  20. # A list of extra arguments to pass to the container
  21. matrix_coturn_container_extra_arguments: []
  22. # A shared secret (between Synapse and Coturn) used for authentication.
  23. # You can put any string here, but generating a strong one is preferred (e.g. `pwgen -s 64 1`).
  24. matrix_coturn_turn_static_auth_secret: ""
  25. # UDP port-range to use for TURN
  26. matrix_coturn_turn_udp_min_port: 49152
  27. matrix_coturn_turn_udp_max_port: 49172
  28. # The external IP address of the machine where Coturn is.
  29. matrix_coturn_turn_external_ip_address: ''
  30. matrix_coturn_allowed_peer_ips: []
  31. matrix_coturn_denied_peer_ips: []
  32. matrix_coturn_user_quota: null
  33. matrix_coturn_total_quota: null
  34. # To enable TLS, you need to provide paths to certificates.
  35. # Paths defined in `matrix_coturn_tls_cert_path` and `matrix_coturn_tls_key_path` are in-container paths.
  36. # Files on the host can be mounted into the container using `matrix_coturn_container_additional_volumes`.
  37. matrix_coturn_tls_enabled: false
  38. matrix_coturn_tls_cert_path: ~
  39. matrix_coturn_tls_key_path: ~