From da8f474c648914a25782b475d8fa1eca0c8cdd7c Mon Sep 17 00:00:00 2001 From: Paulo Gustavo Veiga Date: Wed, 25 Sep 2013 11:00:54 -0300 Subject: [PATCH] Add extra documentation for LDAP configuration --- wise-webapp/src/main/webapp/WEB-INF/app.properties | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/wise-webapp/src/main/webapp/WEB-INF/app.properties b/wise-webapp/src/main/webapp/WEB-INF/app.properties index 07ccb89f..aea43dc6 100755 --- a/wise-webapp/src/main/webapp/WEB-INF/app.properties +++ b/wise-webapp/src/main/webapp/WEB-INF/app.properties @@ -121,11 +121,19 @@ security.type=db # LDAP Configuration properties. security.ldap.server=ldap://localhost:389 + +# If anonymous password is required, change the wisemapping-security-ldap.xml removing the security.ldap.server.user=cn=pveiga,dc=wisemapping,dc=com security.ldap.server.password=password security.ldap.basedn=dc=wisemapping,dc=com + + +# This will be concatenated as part of the DN. In this case, I will be ou="people". +# In case this need to be changed, modify the wisemapping-security-ldap.xml. security.ldap.subDn=people + +# Attribute used as authentication login (Eg: in this case, the user email will be used) security.ldap.auth.attribute=mail security.ldap.lastName.attribute=sn