From bc2354904b060de8ba356d62e4af73b9f961a459 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8B=82=E7=94=B7=E9=A3=8E?= Date: Fri, 25 Jun 2021 00:50:14 +0800 Subject: [PATCH] Add VLESS-TCP-TLS-gRPC --- VLESS-TCP-TLS-gRPC/config_client.json | 67 +++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 VLESS-TCP-TLS-gRPC/config_client.json diff --git a/VLESS-TCP-TLS-gRPC/config_client.json b/VLESS-TCP-TLS-gRPC/config_client.json new file mode 100644 index 0000000..99a604e --- /dev/null +++ b/VLESS-TCP-TLS-gRPC/config_client.json @@ -0,0 +1,67 @@ +{ + "log": { + "loglevel": "warning" + }, + "inbounds": [ + { + "port": 1080, + "listen": "127.0.0.1", + "protocol": "socks", + "settings": { + "udp": true + } + }, + { + "port": 1081, + "listen": "127.0.0.1", + "protocol": "http" + } + ], + "outbounds": [ + { + "protocol": "vless", + "tag": "proxy", + "settings": { + "vnext": [ + { + "address": "//服务器域名或 IP", + "port": 443, + "users": [ + { + "id": "//用户 UUID", + "encryption": "none", + "level": 0 + } + ] + } + ] + }, + "streamSettings": { + "network": "gun", + "security": "tls", + "tlsSettings": { + "serverName": "//服务器域名" + }, + "grpcSettings": { + "serviceName": "path/to/gRPC" // gRPC 路径 + } + } + }, + { + "protocol": "freedom", + "tag": "direct" + } + ], + "routing": { + "domainStrategy": "AsIs", + "rules": [ + { + "type": "field", + "ip": [ + "geoip:private" + ], + "outboundTag": "direct" + } + ] + } +}