From 26593f04c0ee898b351b2fad61a623167b2b716d Mon Sep 17 00:00:00 2001 From: Mitchell Currie Date: Sun, 26 Feb 2023 12:43:26 +1100 Subject: [PATCH] Make it more obvious LDAPS is supported Update example compose config showing both port and alluding to the environment variable that controls the certificates --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 55ad2ad..03aa5c4 100644 --- a/README.md +++ b/README.md @@ -118,6 +118,8 @@ services: ports: # For LDAP - "3890:3890" + # For LDAPS (LDAP Over SSL) if enabled via LLDAP_LDAPS_OPTIONS__ENABLED + - "6360:6360" # For the web front-end - "17170:17170" volumes: @@ -131,6 +133,9 @@ services: - LLDAP_JWT_SECRET=REPLACE_WITH_RANDOM - LLDAP_LDAP_USER_PASS=REPLACE_WITH_PASSWORD - LLDAP_LDAP_BASE_DN=dc=example,dc=com + # If using LDAPS, configure your cert and keys + # - LLDAP_LDAPS_OPTIONS__CERT_FILE=PATH_TO_CERT + # - LLDAP_LDAPS_OPTIONS__KEY_FILE=PATH_TO_KEY ``` Then the service will listen on two ports, one for LDAP and one for the web