Update config_server.json

This commit is contained in:
チセ 2024-01-18 22:07:15 +08:00 committed by yuhan6665
parent 7f4e176d9b
commit a47a984a08
1 changed files with 8 additions and 11 deletions

View File

@ -5,29 +5,26 @@
"inbounds": [
{
"protocol": "vless",
"port": , //import desired port number
"port": {{ port }},
"settings": {
"decryption":"none",
"clients": [
{"id": ""} //enter generated UUID
{
"id": "{{ 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
"seed": "{{ seed }}"
}
}
}
],
"outbounds": [
{"protocol": "freedom"}
{
"protocol": "freedom"
}
]
}