v2ray-examples/VMess-mKCPSeed/config_server.json

28 lines
570 B
JSON
Raw Normal View History

2020-11-22 01:23:40 +08:00
{
"log": {
"loglevel": "warning"
},
"inbounds": [
{
"protocol": "vmess",
"port": "{{ port }}",
"settings": {
"clients": [
2020-12-08 00:59:12 +08:00
{
"id": "{{ uuid }}"
}
2020-11-22 01:23:40 +08:00
]
},
"streamSettings": {
"network": "kcp",
"kcpSettings": {
"seed": "{{ seed }}"
}
}
}
],
"outbounds": [
{"protocol": "freedom"}
]
}