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

19 строки
742 B

  1. matrix_coturn_enabled: true
  2. matrix_coturn_docker_image: "instrumentisto/coturn:4.5.0.8"
  3. matrix_coturn_base_path: "{{ matrix_base_data_path }}/coturn"
  4. matrix_coturn_config_path: "{{ matrix_coturn_base_path }}/turnserver.conf"
  5. # List of systemd services that matrix-coturn.service depends on
  6. matrix_coturn_systemd_required_services_list: ['docker.service']
  7. # A shared secret (between Synapse and Coturn) used for authentication.
  8. # You can put any string here, but generating a strong one is preferred (e.g. `pwgen -s 64 1`).
  9. matrix_coturn_turn_static_auth_secret: ""
  10. # UDP port-range to use for TURN
  11. matrix_coturn_turn_udp_min_port: 49152
  12. matrix_coturn_turn_udp_max_port: 49172
  13. matrix_coturn_turn_external_ip_address: "{{ ansible_host }}"