From d66bc3fe91fe829501e3700990b2f2fa4cada4e2 Mon Sep 17 00:00:00 2001 From: Jizhou Deng Date: Mon, 10 Nov 2025 10:35:58 +0800 Subject: [PATCH] fix: LDAP_SERVER_URL in ce --- manual/config/ldap_in_ce.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/config/ldap_in_ce.md b/manual/config/ldap_in_ce.md index eaa8e537..e6cf90c9 100644 --- a/manual/config/ldap_in_ce.md +++ b/manual/config/ldap_in_ce.md @@ -112,5 +112,5 @@ LDAP_FILTER = 'memberOf={output of dsquery command}' If your LDAP service supports TLS connections, you can configure `LDAP_SERVER_URL` as the access address of the ldaps protocol to use TLS to connect to the LDAP service, for example: ```python -LDAP_SERVER_URL = 'ldaps://192.168.0.1:636/' +LDAP_SERVER_URL = 'ldaps://192.168.0.1:636' ```