v2ray-examples/Socks5-TLS/config_client.json
2020-07-31 20:50:20 +08:00

38 lines
850 B
JSON

{
"log": {
"loglevel": "warning"
},
"inbound": {
"port": 6789,
"listen": "127.0.0.1",
"protocol": "socks",
"settings": {
"auth": "noauth",
"udp": false,
"ip": "127.0.0.1"
}
},
"outbound": {
"protocol": "socks",
"settings": {
"servers": [
{
"address": "you server",
"port": 443,
"users": [
{
"user": "hello",
"pass": "3.1415",
"level": 0
}
]
}
]
},
"streamSettings": {
"network": "tcp",
"security": "tls"
}
}
}