From 7ec14273af41ded6902c8e828d69b910e3251270 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:56 +0800 Subject: [PATCH] Add VLESS-TCP-TLS-gRPC --- VLESS-TCP-TLS-gRPC/config_server.json | 81 +++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 VLESS-TCP-TLS-gRPC/config_server.json diff --git a/VLESS-TCP-TLS-gRPC/config_server.json b/VLESS-TCP-TLS-gRPC/config_server.json new file mode 100644 index 0000000..ffdea4b --- /dev/null +++ b/VLESS-TCP-TLS-gRPC/config_server.json @@ -0,0 +1,81 @@ +{ + "log": { + "loglevel": "warning" + }, + "inbounds": [ + { + "port": 443, + "protocol": "vless", + "settings": { + "decryption": "none", + "fallbacks": [ + { + "dest": "web_server:port" // 回落网站 + }, + { + "alpn": "h2", + "path": "/path/to/gRPC", // gRPC 路径 + "dest": 1234 + } + ] + }, + "streamSettings": { + "network": "tcp", + "security": "tls", + "tlsSettings": { + "alpn": [ + "h2", + "http/1.1" + ], + "certificates": [ + { + "certificateFile": "/path/to/fullchain.crt", // 证书绝对路径 + "keyFile": "/path/to/private.key" // 私钥绝对路径 + } + ] + } + } + }, + { + "port": 1234, + "listen": "127.0.0.1", + "protocol": "vless", + "settings": { + "clients": [ + { + "id": "//用户 UUID", + "level": 0, + "email": "//用户名" + } + ], + "decryption": "none" + }, + "streamSettings": { + "network": "gun", + "security": "none" + } + } + ], + "outbounds": [ + { + "protocol": "freedom", + "tag": "direct" + }, + { + "protocol": "blackhole", + "tag": "block" + } + ], + "routing": { + "domainStrategy": "AsIs", + "rules": [ + { + "type": "field", + "ip": [ + "geoip:private" + ], + "outboundTag": "block" + } + ] + } +}