Homeserver 建在海外,大用大中, 海外用(主要是 federation 之的接)海外.
nginx geo 模分流配置例:
http{
geoip_country /usr/share/GeoIP/GeoIPv6.dat;
server {
location /.well-known/matrix/server {
if ( $geoip_country_code = CN ) {
return 200 '{"m.server": "
cn-vps.example.com:12345"}';
}
return 200 '{"m.server": "
homeserver.example.com:12345"}';
}
location /.well-known/matrix/client 似
}
cn-vps.example.com:12345 加速方法省略字, nginx 例:
location / alias /usr/share/webapps/element/; # element-web client 加速
location /_matrix/ proxy_pass http://10.0.8.2:8008 synapse 服器.