v2ray-examples/VLESS-gRPC-TLS/config_client.json

47 lines
662 B
JSON
Raw Normal View History

2021-04-02 15:16:27 +04:30
{
"log": {
"loglevel": "warning"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
2021-04-02 18:52:42 +08:00
"auth": "noauth"
2021-04-02 15:16:27 +04:30
}
}
],
"outbounds": [
{
"protocol": "vless",
"settings": {
"vnext": [
{
2021-04-02 18:52:42 +08:00
"address": "your_server_ip",
2021-04-02 15:16:27 +04:30
"port": 443,
"users": [
{
"id": "",
2021-04-02 18:52:42 +08:00
"encryption": "none"
2021-04-02 15:16:27 +04:30
}
]
}
]
},
"streamSettings": {
"network": "gun",
"security": "tls",
"tlsSettings": {
2021-04-02 18:52:42 +08:00
"serverName": "your_domain",
2021-04-02 15:16:27 +04:30
"alpn": [
"h2"
2021-04-02 18:52:42 +08:00
]
2021-04-02 15:16:27 +04:30
},
"grpcSettings": {
"serviceName": "GunService"
}
}
}
]
}