Add VLESS-TCP-TLS-gRPC

This commit is contained in:
狂男风 2021-06-25 00:50:14 +08:00 committed by GitHub
parent e1e504eef3
commit bc2354904b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"
}
]
}
}