v2ray-examples/VMess-TCP/config_server.json

45 lines
894 B
JSON
Raw Normal View History

2017-11-25 11:43:00 +00:00
{
2020-07-31 12:58:37 +00:00
"log": {
"loglevel": "warning"
},
"routing": {
"domainStrategy": "AsIs",
"rules": [
{
2020-08-01 13:32:21 +00:00
"type": "field",
2020-07-31 12:58:37 +00:00
"ip": [
"geoip:private"
],
2020-08-01 13:32:21 +00:00
"outboundTag": "block"
2020-07-31 12:58:37 +00:00
}
2020-07-30 14:52:09 +00:00
]
2020-07-31 08:06:21 +00:00
},
2020-07-31 12:58:37 +00:00
"inbounds": [
{
2020-08-01 13:32:21 +00:00
"listen": "0.0.0.0",
2020-07-31 12:58:37 +00:00
"port": 1234,
"protocol": "vmess",
"settings": {
"clients": [
{
2020-11-21 17:21:44 +00:00
"id": ""
2020-07-31 12:58:37 +00:00
}
2020-11-21 17:21:44 +00:00
]
2020-07-31 12:58:37 +00:00
},
"streamSettings": {
"network": "tcp"
}
}
],
"outbounds": [
{
"protocol": "freedom",
"tag": "direct"
},
{
"protocol": "blackhole",
2020-08-01 13:32:21 +00:00
"tag": "block"
2020-07-31 12:58:37 +00:00
}
]
2020-07-31 08:06:21 +00:00
}