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

52 строки
1.7 KiB

  1. #jinja2: lstrip_blocks: "True"
  2. {
  3. "m.homeserver": {
  4. "base_url": "{{ matrix_homeserver_url }}"
  5. }
  6. {% if matrix_identity_server_url %},
  7. "m.identity_server": {
  8. "base_url": "{{ matrix_identity_server_url }}"
  9. }
  10. {% endif %}
  11. {% if matrix_integration_manager_rest_url and matrix_integration_manager_ui_url %},
  12. "m.integrations": {
  13. "managers": [
  14. {
  15. "api_url": "{{ matrix_integration_manager_rest_url }}",
  16. "ui_url": "{{ matrix_integration_manager_ui_url }}"
  17. }
  18. ]
  19. }
  20. {% endif %}
  21. {% if matrix_client_element_jitsi_preferredDomain %},
  22. "io.element.jitsi": {
  23. "preferredDomain": {{ matrix_client_element_jitsi_preferredDomain|to_json }}
  24. },
  25. "im.vector.riot.jitsi": {
  26. "preferredDomain": {{ matrix_client_element_jitsi_preferredDomain|to_json }}
  27. }
  28. {% endif %}
  29. {% if matrix_sliding_sync_enabled %},
  30. "org.matrix.msc3575.proxy": {
  31. "url": "{{ matrix_sliding_sync_base_url }}"
  32. }
  33. {% endif %}
  34. {% if matrix_client_element_location_sharing_enabled %},
  35. "m.tile_server": {
  36. "map_style_url": "https://{{ matrix_server_fqn_element }}/map_style.json"
  37. }
  38. {% endif %}
  39. {% if matrix_well_known_matrix_client_io_element_e2ee_entries_enabled %},
  40. "io.element.e2ee": {
  41. "default": {{ matrix_well_known_matrix_client_io_element_e2ee_default|to_json }},
  42. "secure_backup_required": {{ matrix_well_known_matrix_client_io_element_e2ee_secure_backup_required|to_json }},
  43. "secure_backup_setup_methods": {{ matrix_well_known_matrix_client_io_element_e2ee_secure_backup_setup_methods|to_json }}
  44. }
  45. {% endif %}
  46. {% if matrix_well_known_matrix_client_io_element_e2ee_entries_enabled %},
  47. "im.vector.riot.e2ee": {
  48. "default": {{ matrix_well_known_matrix_client_io_element_e2ee_default|to_json }}
  49. }
  50. {% endif %}
  51. }