From dfa5a65ba5c05af6f49e7a0b2ccb8abacd596078 Mon Sep 17 00:00:00 2001 From: Li4n0 Date: Fri, 7 Jan 2022 23:51:10 +0800 Subject: [PATCH] docs: add ldap protocol support --- CONFIG.md | 5 ++++- CONFIG.zh-CN.md | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CONFIG.md b/CONFIG.md index a607242..7feab73 100644 --- a/CONFIG.md +++ b/CONFIG.md @@ -2,7 +2,7 @@ RevSuit will generate a profile template the first time it is run, and you can edit its contents to implement some customization requirements. ```yaml -version: 1.3 +version: 1.5 addr: :10000 # Address of the HTTP service will listen token: # Authentication Token, both the admin page and the client need to be authenticated by this Token domains: [] # The domain names used by the platform @@ -26,6 +26,9 @@ dns: # DNS receive connection related configura rmi: # RMI receive connection related configuration enable: true addr: :1099 # Address of the RMI service will listen +ldap: + enable: true + addr: :1389 # Address of the Ldap service will listen mysql: # MySQL receive connection related configuration enable: true addr: :3306 # Address of the MySQL service will listen diff --git a/CONFIG.zh-CN.md b/CONFIG.zh-CN.md index e56305f..ee4cd8e 100644 --- a/CONFIG.zh-CN.md +++ b/CONFIG.zh-CN.md @@ -1,7 +1,7 @@ ## 配置文件说明 ```yaml -version: 1.3 +version: 1.5 addr: :10000 # HTTP 服务监听的地址 token: # 鉴权Token,管理页面和客户端都需要通过该 Token 进行鉴权 domains: [] # 反连平台绑定的域名 @@ -25,6 +25,9 @@ dns: # DNS 反连相关配置 rmi: # RMI 反连相关配置 enable: true addr: :1099 # RMI 服务监听的地址 +ldap: + enable: true + addr: :1389 # Ldap 服务监听的地址 mysql: # MySQL 反连相关配置 enable: true addr: :3306 # MySQL 服务监听的地址