Replies: 1 comment 1 reply
-
Tag each of your proxy outbounds with an unique name. Then route traffics to them by domain name. Example {
"outbounds": [
{
"tag": "proxy1",
"protocol": "vmess",
"settings": {}
},
{
"tag": "proxy2",
"protocol": "vmess",
"settings": {}
},
{
"tag": "proxy2",
"protocol": "vmess",
"settings": {}
}
],
"routing": {
"rules": [
{
"outboundTag": "proxy1",
"domains": [
"domain:openai.com"
],
"type": "field"
},
{
"outboundTag": "proxy2",
"domains": [
"domain:wikipedia.org"
],
"type": "field"
},
{
"outboundTag": "proxy3",
"domains": [
"geosite:facebook"
],
"type": "field"
}
]
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
想问这个的原因是我手头有不少可用的节点,但是这些节点只有一个网速特别慢的没有被openai封禁。
所以我希望对于openai.com使用那个节点,剩余的都用速度更快的节点。
Beta Was this translation helpful? Give feedback.
All reactions