We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
route 模块中,设置了 "final": "proxy",同时,也做了如下设置:
route
"final": "proxy"
{ "rule_set": "geosite-geolocation-!cn", "outbound": "proxy" }, { "rule_set": "geoip-cn", "outbound": "direct" }
其中的
{ "rule_set": "geosite-geolocation-!cn", "outbound": "proxy" }
是否与 "final": "proxy" 重复了呢?
The text was updated successfully, but these errors were encountered:
你的 "final": "proxy" 参数指定了最终是到proxy。
在前面部分,它是从上到下匹配的逻辑,根据你自己的一些要求来看
{ "rule_set": "geosite-geolocation-!cn", "outbound": "proxy" },
这条要不要在前面先匹配到proxy去。就看你自己理一下你路由部分的规则 ,从上到下,逻辑上的先后顺序,你有不有什么特殊的要求了。如果重复了,你自己知道就是了。
Sorry, something went wrong.
No branches or pull requests
route
模块中,设置了"final": "proxy"
,同时,也做了如下设置:其中的
是否与
"final": "proxy"
重复了呢?The text was updated successfully, but these errors were encountered: