v2ray-examples/VLESS-mKCPSeed/config_server.json

31 lines
627 B
JSON
Raw Permalink Normal View History

{
"log": {
"loglevel": "warning"
},
"inbounds": [
{
"protocol": "vless",
"port": "{{ port }}",
"settings": {
"decryption":"none",
"clients": [
2021-01-14 01:50:28 +08:00
{
"id": "{{ id }}"
}
]
},
"streamSettings": {
"network": "kcp",
"kcpSettings": {
"seed": "{{ seed }}"
}
}
}
],
"outbounds": [
2021-01-14 01:50:28 +08:00
{
"protocol": "freedom"
}
]
}