1
0
mirror of https://github.com/spantaleev/matrix-docker-ansible-deploy.git synced 2025-03-03 15:22:17 +02:00

22 lines
508 B
Plaintext
Raw Normal View History

#jinja2: lstrip_blocks: "True"
{
"m.homeserver": {
"base_url": "{{ matrix_homeserver_url }}"
}
{% if matrix_identity_server_url %},
"m.identity_server": {
"base_url": "{{ matrix_identity_server_url }}"
}
{% endif %}
{% if matrix_dimension_integrations_rest_url and matrix_dimension_integrations_ui_url %},
"m.integrations": {
"managers": [
{
"api_url": "{{ matrix_dimension_integrations_rest_url }}",
"ui_url": "{{ matrix_dimension_integrations_ui_url }}"
}
]
}
{% endif %}
}