Browse Source

Routing: Add ruleTag

pull/578/head
风扇滑翔翼 2 months ago committed by GitHub
parent
commit
71e359548f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 9
      docs/config/routing.md

9
docs/config/routing.md

@ -71,7 +71,8 @@
"protocol": ["http", "tls", "bittorrent"],
"attrs": { ":method": "GET" },
"outboundTag": "direct",
"balancerTag": "balancer"
"balancerTag": "balancer",
"ruleTag": "rule name"
}
```
@ -186,6 +187,12 @@ Xray-core v1.8.7 或更高版本可省略该行。
`balancerTag``outboundTag` 须二选一。当同时指定时,`outboundTag` 生效。
:::
> `ruleTag`: string
可选,无实际作用,仅用于标识这条规则的名字
如果设置,则命中该条规则时会在 Info 等级输出相关信息,用于调试路由具体命中了哪条规则。
### BalancerObject
负载均衡器配置。当一个负载均衡器生效时,它会从指定的 outbound 中,按配置选出一个最合适的 outbound,进行流量转发。

Loading…
Cancel
Save