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.
 
 

47 rivejä
1.6 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_client_element_location_sharing_enabled %},
  30. "m.tile_server": {
  31. "map_style_url": "https://{{ matrix_server_fqn_element }}/map_style.json"
  32. }
  33. {% endif %}
  34. {% if matrix_well_known_matrix_client_io_element_e2ee_entries_enabled %},
  35. "io.element.e2ee": {
  36. "default": {{ matrix_well_known_matrix_client_io_element_e2ee_default|to_json }},
  37. "secure_backup_required": {{ matrix_well_known_matrix_client_io_element_e2ee_secure_backup_required|to_json }},
  38. "secure_backup_setup_methods": {{ matrix_well_known_matrix_client_io_element_e2ee_secure_backup_setup_methods|to_json }}
  39. }
  40. {% endif %}
  41. {% if matrix_well_known_matrix_client_io_element_e2ee_entries_enabled %},
  42. "im.vector.riot.e2ee": {
  43. "default": {{ matrix_well_known_matrix_client_io_element_e2ee_default|to_json }}
  44. }
  45. {% endif %}
  46. }