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.
 
 

54 líneas
2.5 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 container exposes its gateway HTTP port (tcp/41080 in the container).
  5. #
  6. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:41080"), or empty string to not expose.
  7. matrix_corporal_container_http_gateway_host_bind_port: ''
  8. # Controls whether the matrix-corporal container exposes its API HTTP port (tcp/41081 in the container).
  9. #
  10. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:41081"), or empty string to not expose.
  11. matrix_corporal_container_http_api_host_bind_port: ''
  12. # A list of extra arguments to pass to the container
  13. matrix_corporal_container_extra_arguments: []
  14. # List of systemd services that matrix-corporal.service depends on
  15. matrix_corporal_systemd_required_services_list: ['docker.service']
  16. matrix_corporal_docker_image: "devture/matrix-corporal:1.4.0"
  17. matrix_corporal_base_path: "{{ matrix_base_data_path }}/corporal"
  18. matrix_corporal_config_dir_path: "{{ matrix_corporal_base_path }}/config"
  19. matrix_corporal_cache_dir_path: "{{ matrix_corporal_base_path }}/cache"
  20. matrix_corporal_var_dir_path: "{{ matrix_corporal_base_path }}/var"
  21. matrix_corporal_matrix_homeserver_domain_name: "{{ matrix_domain }}"
  22. # Controls where matrix-corporal can reach your Synapse server (e.g. "http://matrix-synapse:8008").
  23. # If Synapse runs on the same machine, you may need to add its service to `matrix_corporal_systemd_required_services_list`.
  24. matrix_corporal_matrix_homeserver_api_endpoint: ""
  25. # The shared secret between matrix-corporal and Synapse's shared-secret-auth password provider module.
  26. # To use matrix-corporal, the shared-secret-auth password provider needs to be enabled and the secret needs to be identical.
  27. matrix_corporal_matrix_auth_shared_secret: ""
  28. # The shared secret for registering users with Synapse.
  29. # Needs to be identical to Synapse's `registration_shared_secret` setting.
  30. matrix_corporal_matrix_registration_shared_secret: ""
  31. matrix_corporal_matrix_timeout_milliseconds: 45000
  32. matrix_corporal_reconciliation_retry_interval_milliseconds: 30000
  33. matrix_corporal_reconciliation_user_id_local_part: "matrix-corporal"
  34. matrix_corporal_http_api_enabled: false
  35. matrix_corporal_http_api_auth_token: ""
  36. # Matrix Corporal policy provider configuration (goes directly into the configuration's `PolicyProvider` value)
  37. matrix_corporal_policy_provider_config: ""
  38. matrix_corporal_debug: false