Don't make it Dimension specific
This commit is contained in:
parent
5366aef0da
commit
2ea507e2ea
|
@ -319,6 +319,9 @@ matrix_dimension_enabled: false
|
||||||
# the Dimension HTTP port to the local host.
|
# the Dimension HTTP port to the local host.
|
||||||
matrix_dimension_container_http_host_bind_port: "{{ '' if matrix_nginx_proxy_enabled else '127.0.0.1:8184' }}"
|
matrix_dimension_container_http_host_bind_port: "{{ '' if matrix_nginx_proxy_enabled else '127.0.0.1:8184' }}"
|
||||||
|
|
||||||
|
matrix_integration_manager_rest_url: "{{ matrix_dimension_integrations_rest_url if matrix_dimension_enabled else None }}"
|
||||||
|
matrix_integration_manager_ui_url: "{{ matrix_dimension_integrations_ui_url if matrix_dimension_enabled else None }}"
|
||||||
|
|
||||||
######################################################################
|
######################################################################
|
||||||
#
|
#
|
||||||
# /matrix-dimension
|
# /matrix-dimension
|
||||||
|
|
|
@ -31,6 +31,9 @@ matrix_homeserver_url: "https://{{ matrix_server_fqn_matrix }}"
|
||||||
|
|
||||||
matrix_identity_server_url: ~
|
matrix_identity_server_url: ~
|
||||||
|
|
||||||
|
matrix_integration_manager_rest_url: ~
|
||||||
|
matrix_integration_manager_ui_url: ~
|
||||||
|
|
||||||
# The Docker network that all services would be put into
|
# The Docker network that all services would be put into
|
||||||
matrix_docker_network: "matrix"
|
matrix_docker_network: "matrix"
|
||||||
|
|
||||||
|
|
|
@ -8,12 +8,12 @@
|
||||||
"base_url": "{{ matrix_identity_server_url }}"
|
"base_url": "{{ matrix_identity_server_url }}"
|
||||||
}
|
}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if matrix_dimension_integrations_rest_url and matrix_dimension_integrations_ui_url %},
|
{% if matrix_integration_manager_rest_url and matrix_integration_manager_ui_url %},
|
||||||
"m.integrations": {
|
"m.integrations": {
|
||||||
"managers": [
|
"managers": [
|
||||||
{
|
{
|
||||||
"api_url": "{{ matrix_dimension_integrations_rest_url }}",
|
"api_url": "{{ matrix_integration_manager_rest_url }}",
|
||||||
"ui_url": "{{ matrix_dimension_integrations_ui_url }}"
|
"ui_url": "{{ matrix_integration_manager_ui_url }}"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue