v2ray-examples/VLESS-gRPC-TLS/config_client.json
sixg0000d 14662e8461
re-format and fix vless settings (#69)
* VLESS-gRPC-TLS: convert indentation to spaces
format by vscode

* fix: add decryption none to vless settings
2021-04-30 15:07:51 +08:00

47 lines
1.2 KiB
JSON

{
"log": {
"loglevel": "warning"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"auth": "noauth"
}
}
],
"outbounds": [
{
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "your_server_ip",
"port": 443,
"users": [
{
"id": "",
"encryption": "none"
}
]
}
]
},
"streamSettings": {
"network": "gun",
"security": "tls",
"tlsSettings": {
"serverName": "your_domain",
"alpn": [
"h2"
]
},
"grpcSettings": {
"serviceName": "GunService"
}
}
}
]
}