浏览代码

Update config_server.json

Removed quotation mark from port number, which was causing xray client side not to start,
Added more arguments,
Added documentation to help novice users.
alonetrifle 2 年之前
父节点
当前提交
6517444af2
共有 1 个文件被更改,包括 10 次插入3 次删除
  1. 10 3
      VLESS-mKCPSeed/config_server.json

+ 10 - 3
VLESS-mKCPSeed/config_server.json

@@ -5,17 +5,24 @@
     "inbounds": [
         {
             "protocol": "vless",
-            "port": "{{ port }}",
+            "port": , //import desired port number
             "settings": {
                 "decryption":"none",
                 "clients": [
-                    {"id": "{{  }}"}
+                    {"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": "{{ seed }}"
+                    "seed": "" //kcp seed or stream password, it is optional
                 }
             }
         }