v2ray-examples/VMess-TCP/config_client.json

63 lines
1.5 KiB
JSON
Raw Normal View History

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