浏览代码

Fix user-verification-service room membership check

pull/5027/head
Jakob S. 3 周前
committed by Slavi Pantaleev
父节点
当前提交
0c4bce582f
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. +4
    -1
      group_vars/matrix_servers

+ 4
- 1
group_vars/matrix_servers 查看文件

@@ -5884,7 +5884,10 @@ matrix_user_verification_service_container_http_host_bind_port: "{{ '' if (jits
# URL exposed in the docker network
matrix_user_verification_service_container_url: "http://{{ matrix_user_verification_service_container_name }}:3000"

matrix_user_verification_service_uvs_homeserver_url: "{{ matrix_addons_homeserver_client_api_url }}"
# Using `matrix_addons_homeserver_client_api_url` would not work here,
# because `matrix-traefik:8008` (matrix-internal-client-api) does not expose any `/_synapse` paths.
# UVS accesses `/_synapse/admin/v1/rooms` API to check room membership.
matrix_user_verification_service_uvs_homeserver_url: "{{ matrix_homeserver_container_url }}"

# We connect via the container network (private IPs), so we need to disable IP checks
matrix_user_verification_service_uvs_disable_ip_blacklist: "{{ matrix_synapse_enabled }}"


正在加载...
取消
保存