v2ray-examples/Socks5-TLS/config_client.json

38 lines
850 B
JSON
Raw Normal View History

2018-03-29 23:44:50 +08:00
{
2018-04-16 17:07:21 +08:00
"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"
}
}
2020-07-31 20:50:20 +08:00
}