mirror of
https://github.com/XTLS/Xray-examples.git
synced 2024-11-21 16:11:32 +00:00
Update config_server.json
This commit is contained in:
parent
7f4e176d9b
commit
a47a984a08
|
@ -5,29 +5,26 @@
|
||||||
"inbounds": [
|
"inbounds": [
|
||||||
{
|
{
|
||||||
"protocol": "vless",
|
"protocol": "vless",
|
||||||
"port": , //import desired port number
|
"port": {{ port }},
|
||||||
"settings": {
|
"settings": {
|
||||||
"decryption":"none",
|
"decryption":"none",
|
||||||
"clients": [
|
"clients": [
|
||||||
{"id": ""} //enter generated UUID
|
{
|
||||||
|
"id": "{{ uuid }}"
|
||||||
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"streamSettings": {
|
"streamSettings": {
|
||||||
"network": "kcp",
|
"network": "kcp",
|
||||||
"mtu": 1360,
|
|
||||||
"uplinkCapacity":5,
|
|
||||||
"downlinkCapacity":12,
|
|
||||||
"congestion":false,
|
|
||||||
"header":{
|
|
||||||
"type":"dtls" //most secure protocol in kcp
|
|
||||||
},
|
|
||||||
"kcpSettings": {
|
"kcpSettings": {
|
||||||
"seed": "" //kcp seed or stream password, it is optional
|
"seed": "{{ seed }}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"outbounds": [
|
"outbounds": [
|
||||||
{"protocol": "freedom"}
|
{
|
||||||
|
"protocol": "freedom"
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue