mirror of
https://github.com/wekan/wekan.git
synced 2025-12-18 16:30:13 +01:00
- Try to fix: Impossible to connect to LDAP if UserDN contain space(s) #1970
Thanks to Akuket and xet7 !
This commit is contained in:
parent
187b4632e6
commit
05b9e825bb
2 changed files with 2 additions and 2 deletions
|
|
@ -63,7 +63,7 @@ Meteor.startup(() => {
|
||||||
};
|
};
|
||||||
|
|
||||||
if (Meteor.isServer) {
|
if (Meteor.isServer) {
|
||||||
|
console.log(process.env.LDAP_AUTHENTIFICATION_USERDN);
|
||||||
if(process.env.OAUTH2_CLIENT_ID !== '') {
|
if(process.env.OAUTH2_CLIENT_ID !== '') {
|
||||||
|
|
||||||
ServiceConfiguration.configurations.upsert( // eslint-disable-line no-undef
|
ServiceConfiguration.configurations.upsert( // eslint-disable-line no-undef
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ do
|
||||||
export $key=${!default_value}
|
export $key=${!default_value}
|
||||||
else
|
else
|
||||||
echo -e "$key=$value"
|
echo -e "$key=$value"
|
||||||
export $key=$value
|
export $key="$value"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue