My version of CodiMD is: Sequelize CLI [Node: 10.15.2, CLI: 5.5.1, ORM: 5.21.3]
What I expected to happen:
Login with LDAP credentials.
What actually happened:
When I started to run in production mode and tried to login with my credentials, no result were appearing whether it success full or went wrong.
I already tried:
"domain": "<hostname>:3000",
"loglevel": "info",
"hsts": {
"enable": true,
"maxAgeSeconds": 31536000,
"includeSubdomains": true,
"preload": true
},
"ldap": {
"url": "ldap://<url>:<port>",
"bindDn": "userid",
"bindCredentials": "passwd",
"searchBase": "provided the right values",
"searchFilter": "(cn={{username}})",
"searchAttributes": provided list of values,
"usernameField": "cn",
"useridField": "provided right value"
}
I have been using the same LDAP for other application, it is working well with other applications.
The only change here is the domain name.
My concern:
- CodiMD application is running but I am not able to login with LDAP credentials. do we need to have domain name mandatory to run in production?
- My other application is working with LDAP without a domain name.
- when I try to login with LDAP credentials, it is not redirecting to anywhere just a login home is appearing, no errors were shown in logs.
can you please help us with the LDAP set up without a domain name.