Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

38 lines
1.0 KiB

  1. {#
  2. SPDX-FileCopyrightText: 2020 - 2022 Slavi Pantaleev
  3. SPDX-License-Identifier: AGPL-3.0-or-later
  4. #}
  5. server_location: {{ matrix_registration_server_location|to_json }}
  6. server_name: {{ matrix_registration_server_name|to_json }}
  7. shared_secret: {{ matrix_registration_shared_secret|to_json }}
  8. admin_secret: {{ matrix_registration_admin_secret|to_json }}
  9. riot_instance: {{ matrix_registration_riot_instance|to_json }}
  10. db: {{ matrix_registration_db|to_json }}
  11. host: '0.0.0.0'
  12. port: 5000
  13. rate_limit: ["100 per day", "10 per minute"]
  14. allow_cors: false
  15. logging:
  16. disable_existing_loggers: False
  17. version: 1
  18. root:
  19. level: DEBUG
  20. handlers: [console]
  21. formatters:
  22. brief:
  23. format: '%(name)s - %(levelname)s - %(message)s'
  24. precise:
  25. format: '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
  26. handlers:
  27. console:
  28. class: logging.StreamHandler
  29. level: INFO
  30. formatter: brief
  31. stream: ext://sys.stdout
  32. # password requirements
  33. password:
  34. min_length: 8
  35. base_url: {{ matrix_registration_base_url|to_json }}