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.
 
 

52 líneas
2.3 KiB

  1. matrix_coturn_enabled: true
  2. matrix_coturn_docker_image: "instrumentisto/coturn:4.5.1.1"
  3. matrix_coturn_docker_image_force_pull: "{{ matrix_coturn_docker_image.endswith(':latest') }}"
  4. # The Docker network that Coturn would be put into.
  5. #
  6. # Because Coturn relays traffic to unvalidated IP addresses,
  7. # using a dedicated network, isolated from other Docker (and local) services is preferrable.
  8. #
  9. # Setting up deny/allow rules with `matrix_coturn_allowed_peer_ips`/`matrix_coturn_denied_peer_ips` is also
  10. # possible for achieving such isolation, but is more complicated due to the dynamic nature of Docker networking.
  11. matrix_coturn_docker_network: "matrix-coturn"
  12. matrix_coturn_base_path: "{{ matrix_base_data_path }}/coturn"
  13. matrix_coturn_config_path: "{{ matrix_coturn_base_path }}/turnserver.conf"
  14. # List of systemd services that matrix-coturn.service depends on
  15. matrix_coturn_systemd_required_services_list: ['docker.service']
  16. # A list of additional "volumes" to mount in the container.
  17. # This list gets populated dynamically at runtime. You can provide a different default value,
  18. # if you wish to mount your own files into the container.
  19. # Contains definition objects like this: `{"src": "/outside", "dst": "/inside", "options": "rw|ro|slave|.."}
  20. matrix_coturn_container_additional_volumes: []
  21. # A list of extra arguments to pass to the container
  22. matrix_coturn_container_extra_arguments: []
  23. # A shared secret (between Synapse and Coturn) used for authentication.
  24. # You can put any string here, but generating a strong one is preferred (e.g. `pwgen -s 64 1`).
  25. matrix_coturn_turn_static_auth_secret: ""
  26. # UDP port-range to use for TURN
  27. matrix_coturn_turn_udp_min_port: 49152
  28. matrix_coturn_turn_udp_max_port: 49172
  29. # The external IP address of the machine where Coturn is.
  30. matrix_coturn_turn_external_ip_address: ''
  31. matrix_coturn_allowed_peer_ips: []
  32. matrix_coturn_denied_peer_ips: []
  33. matrix_coturn_user_quota: null
  34. matrix_coturn_total_quota: null
  35. # To enable TLS, you need to provide paths to certificates.
  36. # Paths defined in `matrix_coturn_tls_cert_path` and `matrix_coturn_tls_key_path` are in-container paths.
  37. # Files on the host can be mounted into the container using `matrix_coturn_container_additional_volumes`.
  38. matrix_coturn_tls_enabled: false
  39. matrix_coturn_tls_cert_path: ~
  40. matrix_coturn_tls_key_path: ~