2019-05-07 19:23:35 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
2018-09-17 07:51:46 +00:00
|
|
|
{
|
|
|
|
"m.homeserver": {
|
|
|
|
"base_url": "{{ matrix_homeserver_url }}"
|
2019-11-20 22:05:16 +00:00
|
|
|
}
|
|
|
|
{% if matrix_identity_server_url %},
|
2018-09-17 07:51:46 +00:00
|
|
|
"m.identity_server": {
|
|
|
|
"base_url": "{{ matrix_identity_server_url }}"
|
|
|
|
}
|
2019-11-20 22:05:16 +00:00
|
|
|
{% endif %}
|
2019-12-10 04:23:56 +00:00
|
|
|
{% if matrix_integration_manager_rest_url and matrix_integration_manager_ui_url %},
|
2019-12-05 23:32:51 +00:00
|
|
|
"m.integrations": {
|
|
|
|
"managers": [
|
|
|
|
{
|
2019-12-10 04:23:56 +00:00
|
|
|
"api_url": "{{ matrix_integration_manager_rest_url }}",
|
|
|
|
"ui_url": "{{ matrix_integration_manager_ui_url }}"
|
2019-12-05 23:32:51 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
{% endif %}
|
2020-09-26 16:24:09 +00:00
|
|
|
{% if matrix_client_element_jitsi_preferredDomain %},
|
2020-09-26 16:27:40 +00:00
|
|
|
"io.element.jitsi": {
|
|
|
|
"preferredDomain": {{ matrix_client_element_jitsi_preferredDomain|to_json }}
|
|
|
|
},
|
2020-04-09 06:58:35 +00:00
|
|
|
"im.vector.riot.jitsi": {
|
2020-09-26 16:24:09 +00:00
|
|
|
"preferredDomain": {{ matrix_client_element_jitsi_preferredDomain|to_json }}
|
2020-04-09 06:58:35 +00:00
|
|
|
}
|
|
|
|
{% endif %}
|
2020-10-15 22:32:00 +00:00
|
|
|
,
|
2020-10-16 06:47:37 +00:00
|
|
|
"io.element.e2ee": {
|
|
|
|
"default": {{ matrix_client_element_e2ee_default|to_json }},
|
2020-10-16 07:24:50 +00:00
|
|
|
"secure_backup_required": {{ matrix_client_element_e2ee_secure_backup_required|to_json }},
|
|
|
|
"secure_backup_setup_methods": {{ matrix_client_element_e2ee_secure_backup_setup_methods|to_json }}
|
2020-09-26 16:27:40 +00:00
|
|
|
},
|
2020-06-24 08:38:51 +00:00
|
|
|
"im.vector.riot.e2ee": {
|
2020-10-16 06:47:37 +00:00
|
|
|
"default": {{ matrix_client_element_e2ee_default|to_json }}
|
2020-06-24 08:38:51 +00:00
|
|
|
}
|
2018-09-17 07:51:46 +00:00
|
|
|
}
|