v2ray-examples/VMess-HTTP2/config_client.json

63 lines
1.4 KiB
JSON
Raw Normal View History

2018-04-16 09:47:18 +00:00
{
"log": {
2020-08-01 13:40:03 +00:00
"loglevel": "warning"
2018-04-16 09:47:18 +00:00
},
2020-08-01 13:40:03 +00:00
"routing": {
2020-08-29 05:35:06 +00:00
"domainStrategy": "AsIs",
2020-08-01 13:40:03 +00:00
"rules": [
{
"type": "field",
"ip": [
"geoip:private"
],
2020-11-21 21:37:44 +00:00
"outboundTag": "direct"
2020-08-01 13:40:03 +00:00
}
]
},
"inbounds": [
2018-04-16 09:47:18 +00:00
{
2020-08-01 13:40:03 +00:00
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
2018-04-16 09:47:18 +00:00
"settings": {
2020-08-01 13:40:03 +00:00
"auth": "noauth",
2020-08-01 15:05:34 +00:00
"udp": true,
2020-08-01 13:40:03 +00:00
"ip": "127.0.0.1"
2018-04-16 09:47:18 +00:00
}
},
{
2020-08-01 13:40:03 +00:00
"listen": "127.0.0.1",
"port": "1081",
"protocol": "http"
2018-04-16 09:47:18 +00:00
}
],
2020-08-01 13:40:03 +00:00
"outbounds": [
{
"protocol": "vmess",
"settings": {
"vnext": [
{
"address": "",
"port": 1234,
2020-11-21 17:21:44 +00:00
"users": [
2020-08-01 13:40:03 +00:00
{
"id": "",
"security": "none"
}
]
}
]
},
"streamSettings": {
"network": "http",
2020-11-21 17:21:44 +00:00
"security": "tls"
2020-08-01 13:40:03 +00:00
},
"tag": "proxy"
2018-04-16 09:47:18 +00:00
},
2020-08-01 13:40:03 +00:00
{
"protocol": "freedom",
"tag": "direct"
}
]
}