From 1416a639e44ed16e4179a5bc178f31a76e1f9533 Mon Sep 17 00:00:00 2001 From: Kunal Shroff Date: Tue, 1 Oct 2024 15:46:16 -0400 Subject: [PATCH] fix embedded ldap configuration #155 --- src/main/resources/application.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 25753d0..db458ff 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -34,8 +34,8 @@ ldap.groups.search.pattern = (memberUid= {1}) embedded_ldap.enabled = false embedded_ldap.urls = ldap://localhost:8389/dc=cf,dc=local embedded_ldap.base.dn = dc=cf,dc=local -embedded_ldap.user.dn.pattern = uid={0},ou=People,dc=cf,dc=local -embedded_ldap.groups.search.base = ou=Group,dc=cf,dc=local +embedded_ldap.user.dn.pattern = uid={0},ou=People +embedded_ldap.groups.search.base = ou=Group embedded_ldap.groups.search.pattern = (memberUid= {1}) spring.ldap.embedded.ldif=classpath:cf.ldif spring.ldap.embedded.base-dn=dc=cf,dc=local