Files
v2ray_simple/examples/grpc.client.toml
2022-12-27 19:47:14 +08:00

22 lines
689 B
TOML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
[[listen]]
protocol = "socks5http"
host = "127.0.0.1"
port = 10800
[[dial]]
protocol = "vlesss"
uuid = "a684455c-b14f-11ea-bf0d-42010aaa0003"
host = "127.0.0.1"
port = 4434
version = 0
insecure = true
tls_type = "utls"
adv = "grpc"
path = "ohmygod_verysimple_is_very_simple" #path这里填写grpc的servicename
# extra = { grpc_multi = true } # 是否开启MultiMode, 只需客户端配置,服务端自动适配. 注意v2ray不支持multiMode, 这个功能只与 xray 兼容.
# 且默认的 verysimple 发布包不支持该功能,需要自行用 go build -tags grpc_full 来编译得到 支持 multiMode 的版本。
# VS 只在 1.2.4 以及更老版本中支持 grpc_multi