v2ray-examples/V5-VMess-HTTP2/config_client.json

46 lines
975 B
JSON
Raw Normal View History

2023-02-14 17:07:06 +00:00
{
"access": {
"type": "Console",
"level": "Warning"
},
"error": {
"type": "Console",
"level": "Warning"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": "10808",
"protocol": "socks",
"settings": {
"udpEnabled": true,
"address": "127.0.0.1"
}
},
{
"listen": "127.0.0.1",
"port": "10809",
"protocol": "http"
}
],
"outbounds": [
{
"protocol": "vmess",
"settings": {
"address": "",
"port": 1234,
"uuid": "your UUID"
},
"streamSettings": {
"transport": "http",
"security": "tls"
},
"tag": "proxy"
},
{
"protocol": "freedom",
"tag": "direct"
}
]
}