Xray-examples/VLESS-mKCPSeed/config_server.json

34 lines
877 B
JSON
Raw Normal View History

2020-11-24 16:10:49 +00:00
{
"log": {
"loglevel": "warning"
},
"inbounds": [
{
"protocol": "vless",
"port": , //import desired port number
2020-11-24 16:10:49 +00:00
"settings": {
"decryption":"none",
"clients": [
{"id": ""} //enter generated UUID
2020-11-24 16:10:49 +00:00
]
},
"streamSettings": {
"network": "kcp",
"mtu": 1360,
"uplinkCapacity":5,
"downlinkCapacity":12,
"congestion":false,
"header":{
"type":"dtls" //most secure protocol in kcp
},
2020-11-24 16:10:49 +00:00
"kcpSettings": {
"seed": "" //kcp seed or stream password, it is optional
2020-11-24 16:10:49 +00:00
}
}
}
],
"outbounds": [
{"protocol": "freedom"}
]
}