From 8b91e50d029d4fcc58f7131c82bea9ec23d87575 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=B9=E5=9D=97=E5=90=9B?= Date: Thu, 21 Jul 2022 20:30:26 +0800 Subject: [PATCH] Update README --- README.md | 8 +++++++- README_en-US.md | 5 ++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6337adf..63537ac 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,13 @@ // 临时令牌过期时间(秒) "tempTokenExpirationTime_S": 300, // 授权令牌最后使用过期时间(小时) - "tokenLastUseExpirationTime_H": 48 + "tokenLastUseExpirationTime_H": 48, + // 多服务器通信端口 + "socketPort": 5746, + // 多服务器通信密钥 + "socketToken": "", + // 多服务器Dispatch地址 + "socketHost": "127.0.0.1" } ``` diff --git a/README_en-US.md b/README_en-US.md index 6997b53..9722184 100644 --- a/README_en-US.md +++ b/README_en-US.md @@ -41,7 +41,10 @@ A plugin that opens the GC command execution interface for third-party clients "consoleToken": "", "codeExpirationTime_S": 60, "tempTokenExpirationTime_S": 300, - "tokenLastUseExpirationTime_H": 48 + "tokenLastUseExpirationTime_H": 48, + "socketPort": 5746, + "socketToken": "", + "socketHost": "127.0.0.1" } ```