mirror of
https://github.com/XTLS/Xray-examples.git
synced 2024-11-10 02:53:11 +00:00
6517444af2
Removed quotation mark from port number, which was causing xray client side not to start, Added more arguments, Added documentation to help novice users.
34 lines
877 B
JSON
34 lines
877 B
JSON
{
|
|
"log": {
|
|
"loglevel": "warning"
|
|
},
|
|
"inbounds": [
|
|
{
|
|
"protocol": "vless",
|
|
"port": , //import desired port number
|
|
"settings": {
|
|
"decryption":"none",
|
|
"clients": [
|
|
{"id": ""} //enter generated UUID
|
|
]
|
|
},
|
|
"streamSettings": {
|
|
"network": "kcp",
|
|
"mtu": 1360,
|
|
"uplinkCapacity":5,
|
|
"downlinkCapacity":12,
|
|
"congestion":false,
|
|
"header":{
|
|
"type":"dtls" //most secure protocol in kcp
|
|
},
|
|
"kcpSettings": {
|
|
"seed": "" //kcp seed or stream password, it is optional
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"outbounds": [
|
|
{"protocol": "freedom"}
|
|
]
|
|
}
|