v2ray-examples/VMess-Websocket-TLS/config_client.json

63 lines
1.4 KiB
JSON
Raw Normal View History

2017-11-25 19:43:00 +08:00
{
2020-08-01 21:38:40 +08:00
"log": {
"loglevel": "warning"
},
"routing": {
2020-08-29 13:35:06 +08:00
"domainStrategy": "AsIs",
2020-08-01 21:38:40 +08:00
"rules": [
{
"type": "field",
"ip": [
"geoip:private"
],
2020-11-22 05:37:44 +08:00
"outboundTag": "direct"
2020-08-01 21:38:40 +08:00
}
]
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "1080",
"protocol": "socks",
"settings": {
"auth": "noauth",
2020-08-01 23:04:30 +08:00
"udp": true,
2020-08-01 21:38:40 +08:00
"ip": "127.0.0.1"
}
},
{
"listen": "127.0.0.1",
"port": "1081",
"protocol": "http"
}
],
"outbounds": [
{
"protocol": "vmess",
"settings": {
"vnext": [
{
"address": "",
"port": 1234,
2020-11-22 01:21:44 +08:00
"users": [
2020-08-01 21:38:40 +08:00
{
"id": "",
"security": "none"
}
]
}
]
},
"streamSettings": {
"network": "ws",
2020-11-22 01:21:44 +08:00
"security": "tls"
2020-08-01 21:38:40 +08:00
},
"tag": "proxy"
},
{
"protocol": "freedom",
"tag": "direct"
}
]
2017-11-25 19:43:00 +08:00
}