v2ray-examples/VMess-TCP/config_client.json

60 lines
1.3 KiB
JSON
Raw Normal View History

2017-11-25 19:43:00 +08:00
{
2020-08-01 21:31:28 +08:00
"log": {
"loglevel": "warning"
},
"routing": {
2020-08-29 13:35:06 +08:00
"domainStrategy": "AsIs",
2020-08-01 21:31:28 +08:00
"rules": [
{
"type": "field",
"ip": [
"geoip:private"
],
"tag": "direct"
}
2020-07-30 22:51:21 +08:00
]
2020-08-01 21:31:28 +08:00
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"auth": "noauth",
2020-08-01 22:53:26 +08:00
"udp": true,
2020-08-01 21:31:28 +08:00
"ip": "127.0.0.1"
}
},
{
"listen": "127.0.0.1",
"port": "1081",
"protocol": "http"
}
],
"outbounds": [
{
2020-08-08 19:42:06 +08:00
"protocol": "vmess",
2020-08-01 21:31:28 +08:00
"settings": {
"vnext": [
{
"address": "",
"port": 1234,
2020-11-22 01:21:44 +08:00
"users": [
2020-08-01 21:31:28 +08:00
{
2020-11-22 01:21:44 +08:00
"id": ""
2020-08-01 21:31:28 +08:00
}
]
}
]
},
"streamSettings": {
"network": "tcp"
},
"tag": "proxy"
},
{
"protocol": "freedom",
"tag": "direct"
}
]
2020-08-01 19:26:39 +08:00
}