docs: add ldap protocol support

This commit is contained in:
Li4n0
2022-01-07 23:51:10 +08:00
parent 913e0f78db
commit dfa5a65ba5
2 changed files with 8 additions and 2 deletions
+4 -1
View File
@@ -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. RevSuit will generate a profile template the first time it is run, and you can edit its contents to implement some customization requirements.
```yaml ```yaml
version: 1.3 version: 1.5
addr: :10000 # Address of the HTTP service will listen 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 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 domains: [] # The domain names used by the platform
@@ -26,6 +26,9 @@ dns: # DNS receive connection related configura
rmi: # RMI receive connection related configuration rmi: # RMI receive connection related configuration
enable: true enable: true
addr: :1099 # Address of the RMI service will listen 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 mysql: # MySQL receive connection related configuration
enable: true enable: true
addr: :3306 # Address of the MySQL service will listen addr: :3306 # Address of the MySQL service will listen
+4 -1
View File
@@ -1,7 +1,7 @@
## 配置文件说明 ## 配置文件说明
```yaml ```yaml
version: 1.3 version: 1.5
addr: :10000 # HTTP 服务监听的地址 addr: :10000 # HTTP 服务监听的地址
token: # 鉴权Token,管理页面和客户端都需要通过该 Token 进行鉴权 token: # 鉴权Token,管理页面和客户端都需要通过该 Token 进行鉴权
domains: [] # 反连平台绑定的域名 domains: [] # 反连平台绑定的域名
@@ -25,6 +25,9 @@ dns: # DNS 反连相关配置
rmi: # RMI 反连相关配置 rmi: # RMI 反连相关配置
enable: true enable: true
addr: :1099 # RMI 服务监听的地址 addr: :1099 # RMI 服务监听的地址
ldap:
enable: true
addr: :1389 # Ldap 服务监听的地址
mysql: # MySQL 反连相关配置 mysql: # MySQL 反连相关配置
enable: true enable: true
addr: :3306 # MySQL 服务监听的地址 addr: :3306 # MySQL 服务监听的地址