Browse Source

Update config_server.json

チセ 1 năm trước cách đây
mục cha
commit
a47a984a08
1 tập tin đã thay đổi với 8 bổ sung11 xóa
  1. 8 11
      VLESS-mKCPSeed/config_server.json

+ 8 - 11
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"
+        }
     ]
 }