v2ray-examples/V5-VMess-mKCPSeed/config_client.json
2023-02-15 01:07:06 +08:00

41 lines
899 B
JSON

{
"access": {
"type": "Console",
"level": "Warning"
},
"error": {
"type": "Console",
"level": "Warning"
},
"inbounds": [
{
"port": 10808,
"listen": "127.0.0.1",
"protocol": "socks",
"settings": {
"udpEnabled": true
}
},
{
"port": 10809,
"listen": "127.0.0.1",
"protocol": "http"
}
],
"outbounds": [
{
"protocol": "vmess",
"settings": {
"address": "{{ host }}",
"port": "{{ port }}",
"uuid": "your UUID"
},
"streamSettings": {
"transport": "kcp",
"transportSettings": {
"seed": "{{ seed }}"
}
}
}
]
}