Hi Everyone,
Does RunDeck support authentication using LDAP over startTLS? If so, how do I set up the configuration?
Logging in as ldap user with username="build" password="build" works out of the box.
Then I can force the ldap container to require TLS by setting environment variable LDAP_TLS_ENFORCE="true":
ldap:
hostname: ldap
image: osixia/openldap:1.2.1
environment:
- LDAP_ORGANISATION=RD Test
- LDAP_ADMIN_PASSWORD=AdminPass123
- LDAP_TLS_ENFORCE=true
volumes:
- ./ldif:/container/service/slapd/assets/config/bootstrap/ldif/custom:rw
ports:
- "389:389"
command: --copy-service
But now I can no longer log in as the LDAP user.
Any help would be appreciated! Thanks,
Lee