Stick to port 3003 instead of changing the port based on the status of grafana.
This commit is contained in:
parent
0e0ae2f3e6
commit
07d9ea5e87
@ -45,7 +45,7 @@ For a list of all configuration options see the role defaults [`roles/matrix-use
|
|||||||
But be aware of all the plugging happening in `group_vars/matrix_servers`.
|
But be aware of all the plugging happening in `group_vars/matrix_servers`.
|
||||||
|
|
||||||
In the default configuration, the UVS Server is only reachable via the docker network, which is fine if e.g. Jitsi is also running in a container on the host.
|
In the default configuration, the UVS Server is only reachable via the docker network, which is fine if e.g. Jitsi is also running in a container on the host.
|
||||||
However, it is possible to expose UVS via setting `matrix_user_verification_service_container_http_host_bind_port`. Be aware that the normally used port (3000) may collide with Grafana.
|
However, it is possible to expose UVS via setting `matrix_user_verification_service_container_http_host_bind_port`.
|
||||||
|
|
||||||
### Access token
|
### Access token
|
||||||
|
|
||||||
|
@ -3200,9 +3200,9 @@ matrix_user_verification_service_systemd_required_services_list: |
|
|||||||
|
|
||||||
# If Jitsi is managed by this playbook we can use the docker network - no need to expose a port.
|
# If Jitsi is managed by this playbook we can use the docker network - no need to expose a port.
|
||||||
# If Jitsi is not managed by this playbook, or you otherwise have a need for it, you can expose
|
# If Jitsi is not managed by this playbook, or you otherwise have a need for it, you can expose
|
||||||
# matrix-user-verfification-services's client-server port to the local host.
|
# matrix-user-verfification-services's client-server port to the local host port 3003.
|
||||||
# Note: If grafana is also enabled, the exposed port is changed to 3003.
|
# By default Matrix-User-Verification-Service binds to port 3000, which collides with grafana, therefore this uses port 3003.
|
||||||
matrix_user_verification_service_container_http_host_bind_port: "{{ '' if (matrix_jitsi_enabled | bool and matrix_jitsi_enable_auth | bool and matrix_jitsi_auth_type == 'matrix') else '127.0.0.1:' + ('3003' if matrix_nginx_proxy_proxy_grafana_enabled else '3000') }}"
|
matrix_user_verification_service_container_http_host_bind_port: "{{ '' if (matrix_jitsi_enabled | bool and matrix_jitsi_enable_auth | bool and matrix_jitsi_auth_type == 'matrix') else '127.0.0.1:3003' }}"
|
||||||
|
|
||||||
# URL exposed in the docker network
|
# URL exposed in the docker network
|
||||||
matrix_user_verification_service_container_url: "http://{{ matrix_user_verification_service_container_name }}:3000"
|
matrix_user_verification_service_container_url: "http://{{ matrix_user_verification_service_container_name }}:3000"
|
||||||
|
Loading…
Reference in New Issue
Block a user