由于委派服务器上出现“没有此文件或目录”错误,矩阵突触委派失败

由于委派服务器上出现“没有此文件或目录”错误,矩阵突触委派失败

我正在 Synapse 服务器上设置委托。我遵循官方文档,似乎一切都已准备就绪。当我在客户端中输入主服务器“example.org”时,我在 example.com nginx 日志中收到以下错误,该客户端应该将客户端流量委托给“synapse.example.com”:

[error] 28804#28804: *246 open() "/usr/share/nginx/html/_matrix/client/r0/login" failed (2: No such file or directory) [..]

客户端似乎从错误的服务器而不是委托的服务器请求矩阵服务器信息。

example.com 上的 nginx 配置:

server {
        server_name www.example.com example.com; # managed by Certbot


    location /.well-known/matrix/server {
        default_type application/json;
        return 200 '{"m.server": "synapse.example.com:443"}';
    }

    location /.well-known/matrix/client {
        default_type application/json;
        return 200 '{"m.homeserver":{"base_url": "https://synapse.example.com"}}';  
    }


    listen [::]:443 ssl ipv6only=on; # managed by Certbot
    listen 443 ssl; # managed by Certbot

    [...ssl certs...]

}
server {
    if ($host = www.example.com) {
        return 301 https://$host$request_uri;
    } # managed by Certbot


    if ($host = example.com) {
        return 301 https://$host$request_uri;
    } # managed by Certbot


    listen 80 ;
    listen [::]:80 ;
    server_name www.example.com example.com;
    return 404; # managed by Certbot
}

synapse.example.com nginx 配置:

server {
    listen 443 ssl http2;
    listen [::]:443 ssl http2;

    # For the federation port
    listen 8448 ssl http2 default_server;
    listen [::]:8448 ssl http2 default_server;

    server_name synapse.example.com;

    location ~ ^(/_matrix|/_synapse/client) {
        [...]
        proxy_pass http://localhost:8008;
        proxy_set_header X-Forwarded-For $remote_addr;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header Host $host;
        [...]
    }
}

最后,synapse.example.com 上的 homeserver.yaml:

[...]
public_baseurl: https://synapse.example.com/
presence:
listeners:
  - port: 8008
    tls: false
    type: http
    x_forwarded: true
    bind_addresses: ['::1', '127.0.0.1']
    resources:
      - names: [client, federation]
        compress: false
[...]

我理解 example.com 上的错误意味着某些请求未转发到 synapse.example.com 上的委托主机,但在 synapse 文档或其他地方找不到任何内容。我原本以为矩阵客户端/协议会解析 .well-known JSON,然后自行处理委托。显然不是。

有人能告诉我如何在这里调试吗?或者甚至解释一下我做错了什么。非常感谢您的帮助

编辑: 开场https://synapse.example.com/_matrix/key/v2/server在浏览器中,json 包含键/值对

server_name "example.com"

我不确定这是在哪里定义的,以及这是否正确。

(顺便说一句,“synapse.example.com”和“example.com”的所有引用分别代表真实域名。)

相关内容