2023-09-15
学习资料
00

目录

xray中配置后端负载均衡
一、在outbounds块中配置相应的出站协议
二、routing块中,配置一个均衡器
三、在routing块的rules中,配置相应的路由选择条件

xray中配置后端负载均衡

配置负载均衡可以使用在以下场景

  • 国内中转机配置多个国外出站,增加连接的稳定性和速度
  • 国外机配置多个后端,增加解锁流媒体的稳定性

一、在outbounds块中配置相应的出站协议

json
{ "tag":"GoNetflix", "protocol":"socks", "settings":{ "servers":[ { "address":"x.x.x.x", "port":12345, "users":[ { "user":"a", "pass":"b" } ] } ] } }, { "tag":"GoNetflix2", "protocol":"socks", "settings":{ "servers":[ { "address":"y.y.y.y", "port":12345, "users":[ { "user":"c", "pass":"d" } ] } ] } }

二、routing块中,配置一个均衡器

json
"balancers":[ { "tag":"balancer", "selector":[ "GoNetflix", "GoNetflix2" ], "strategy":{ "type":"random" } } ]

三、在routing块的rules中,配置相应的路由选择条件

json
{ "type":"field", "balancerTag":"balancer", "domain":[ "domain:netflix.com", "domain:nflxvideo.net" ] }