Matrix Docker Ansible eploy
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

45 lignes
1.4 KiB

  1. {#
  2. SPDX-FileCopyrightText: 2024 MDAD Team and contributors
  3. SPDX-License-Identifier: AGPL-3.0-or-later
  4. #}
  5. {
  6. "Matrix": {
  7. "HomeserverDomainName": "{{ matrix_corporal_matrix_homeserver_domain_name }}",
  8. "HomeserverApiEndpoint": "{{ matrix_corporal_matrix_homeserver_api_endpoint }}",
  9. "AuthSharedSecret": "{{ matrix_corporal_matrix_auth_shared_secret }}",
  10. "RegistrationSharedSecret": "{{ matrix_corporal_matrix_registration_shared_secret }}",
  11. "TimeoutMilliseconds": {{ matrix_corporal_matrix_timeout_milliseconds }}
  12. },
  13. "Corporal": {
  14. "UserID": "@{{ matrix_corporal_corporal_user_id_local_part }}:{{ matrix_domain }}"
  15. },
  16. "Reconciliation": {
  17. "RetryIntervalMilliseconds": {{ matrix_corporal_reconciliation_retry_interval_milliseconds }}
  18. },
  19. "HttpGateway": {
  20. "ListenAddress": "0.0.0.0:41080",
  21. "TimeoutMilliseconds": {{ matrix_corporal_http_gateway_timeout_milliseconds }},
  22. "InternalRESTAuth": {
  23. "Enabled": {{ matrix_corporal_http_gateway_internal_rest_auth_enabled|to_json }}
  24. }
  25. },
  26. "HttpApi": {
  27. "Enabled": {{ matrix_corporal_http_api_enabled|to_json }},
  28. "ListenAddress": "0.0.0.0:41081",
  29. "AuthorizationBearerToken": "{{ matrix_corporal_http_api_auth_token }}",
  30. "TimeoutMilliseconds": {{ matrix_corporal_http_api_timeout_milliseconds }}
  31. },
  32. "PolicyProvider": {{ matrix_corporal_policy_provider_config }},
  33. "Misc": {
  34. "Debug": {{ matrix_corporal_debug|to_json }}
  35. }
  36. }