v2ray-examples/VLESS-gRPC-TLS/config_client.json
2021-04-02 18:46:27 +08:00

57 lines
863 B
JSON

{
"log": {
"loglevel": "warning"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"auth": "noauth",
"udp": true,
"ip": "127.0.0.1"
}
},
{
"listen": "127.0.0.1",
"port": "1081",
"protocol": "http"
}
],
"outbounds": [
{
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "1.2.3.4",
"port": 443,
"users": [
{
"id": "",
"encryption": "none",
"level": 0
}
]
}
]
},
"streamSettings": {
"network": "gun",
"security": "tls",
"tlsSettings": {
"serverName": "your.domain.com",
"allowInsecure": false,
"alpn": [
"h2"
],
"disableSessionResumption": true
},
"grpcSettings": {
"serviceName": "GunService"
}
}
}
]
}