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

32 строки
946 B

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