AnyTLS
AnytlsServerConfig 与 AnytlsClientConfig
AnyTLS 多路复用 TLS 隧道协议。Proto:protos/proto/vx/proxy/anytls/anytls.proto
AnytlsServerConfig
{
"@type": "type.googleapis.com/vx.proxy.anytls.AnytlsServerConfig",
"users": [{ "secret": "your-password" }]
}AnytlsClientConfig
passwordstring
认证密码,与服务器 users[].secret 对应
idleSessionCheckIntervaluint32
空闲会话检查间隔(秒,默认 30)
idleSessionTimeoutuint32
会话空闲超过此时长后关闭(秒,默认 30)
minIdleSessionuint32
连接池保持的最小空闲会话数(默认 5)
{
"@type": "type.googleapis.com/vx.proxy.anytls.AnytlsClientConfig",
"password": "your-password",
"idleSessionCheckInterval": 30,
"idleSessionTimeout": 60,
"minIdleSession": 4
}