Xray-examples/VLESS-mKCPSeed/config_server.json

31 lines
628 B
JSON
Raw Normal View History

2020-11-24 16:10:49 +00:00
{
"log": {
"loglevel": "warning"
},
"inbounds": [
{
"protocol": "vless",
2024-01-18 14:07:15 +00:00
"port": {{ port }},
2020-11-24 16:10:49 +00:00
"settings": {
"decryption":"none",
"clients": [
2024-01-18 14:07:15 +00:00
{
"id": "{{ uuid }}"
}
2020-11-24 16:10:49 +00:00
]
},
"streamSettings": {
"network": "kcp",
"kcpSettings": {
2024-01-18 14:07:15 +00:00
"seed": "{{ seed }}"
2020-11-24 16:10:49 +00:00
}
}
}
],
"outbounds": [
2024-01-18 14:07:15 +00:00
{
"protocol": "freedom"
}
2020-11-24 16:10:49 +00:00
]
}