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

44 строки
2.0 KiB

  1. # matrix-corporal is a reconciliator and gateway for a managed Matrix server.
  2. # See: https://github.com/devture/matrix-corporal
  3. matrix_corporal_enabled: true
  4. # Controls whether the matrix-corporal web server's ports (`41080` and `41081`) are exposed outside of the container.
  5. matrix_corporal_container_expose_ports: false
  6. # List of systemd services that matrix-corporal.service depends on
  7. matrix_corporal_systemd_required_services_list: ['docker.service']
  8. matrix_corporal_docker_image: "devture/matrix-corporal:1.3.0"
  9. matrix_corporal_base_path: "{{ matrix_base_data_path }}/corporal"
  10. matrix_corporal_config_dir_path: "{{ matrix_corporal_base_path }}/config"
  11. matrix_corporal_cache_dir_path: "{{ matrix_corporal_base_path }}/cache"
  12. matrix_corporal_var_dir_path: "{{ matrix_corporal_base_path }}/var"
  13. matrix_corporal_matrix_homeserver_domain_name: "{{ matrix_domain }}"
  14. # Controls where matrix-corporal can reach your Synapse server (e.g. "http://matrix-synapse:8008").
  15. # If Synapse runs on the same machine, you may need to add its service to `matrix_corporal_systemd_required_services_list`.
  16. matrix_corporal_matrix_homeserver_api_endpoint: ""
  17. # The shared secret between matrix-corporal and Synapse's shared-secret-auth password provider module.
  18. # To use matrix-corporal, the shared-secret-auth password provider needs to be enabled and the secret needs to be identical.
  19. matrix_corporal_matrix_auth_shared_secret: ""
  20. # The shared secret for registering users with Synapse.
  21. # Needs to be identical to Synapse's `registration_shared_secret` setting.
  22. matrix_corporal_matrix_registration_shared_secret: ""
  23. matrix_corporal_matrix_timeout_milliseconds: 45000
  24. matrix_corporal_reconciliation_retry_interval_milliseconds: 30000
  25. matrix_corporal_reconciliation_user_id_local_part: "matrix-corporal"
  26. matrix_corporal_http_api_enabled: false
  27. matrix_corporal_http_api_auth_token: ""
  28. # Matrix Corporal policy provider configuration (goes directly into the configuration's `PolicyProvider` value)
  29. matrix_corporal_policy_provider_config: ""
  30. matrix_corporal_debug: false