From a47a984a08407dc2d6b3cdcf3b4e7c366dd77a61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=81=E3=82=BB?= <123655015+chise0713@users.noreply.github.com> Date: Thu, 18 Jan 2024 22:07:15 +0800 Subject: [PATCH] Update config_server.json --- VLESS-mKCPSeed/config_server.json | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/VLESS-mKCPSeed/config_server.json b/VLESS-mKCPSeed/config_server.json index b5ff8cb..bc294d8 100644 --- a/VLESS-mKCPSeed/config_server.json +++ b/VLESS-mKCPSeed/config_server.json @@ -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" + } ] }