From 434173e71b24ff71d26bb9d15bf959e7b7e99e00 Mon Sep 17 00:00:00 2001 From: otmatas Date: Mon, 2 Jun 2025 18:07:02 +0000 Subject: [PATCH] Update lldap/lldap/.env.lldap --- lldap/lldap/.env.lldap | 29 +++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/lldap/lldap/.env.lldap b/lldap/lldap/.env.lldap index cc2e959..3036c9d 100644 --- a/lldap/lldap/.env.lldap +++ b/lldap/lldap/.env.lldap @@ -1,24 +1,33 @@ # Unix user and group IDs (match your host user) -UID=1000 -GID=1000 +UID=0 +GID=0 # Timezone for logs, etc. TZ=Europe/Madrid # Security tokens (generate securely! e.g. `openssl rand -hex 32`) -LLDAP_JWT_SECRET= -LLDAP_KEY_SEED= +LLDAP_JWT_SECRET="" +LLDAP_JWT_SECRET_FILE="" # Leave Blank +LLDAP_KEY_SEED="" +LLDAP_KEY_SEED_FILE="" # Leave Blank + + # LDAP configuration LLDAP_LDAP_BASE_DN=dc=otmatas,dc=com -LLDAP_LDAP_USER_PASS= +LLDAP_LDAP_USER_PASS="" + + +LLDAP_LDAPS_OPTIONS__ENABLED=true +LLDAP_LDAPS_OPTIONS__CERT_FILE=/certs/certs/ldap.otmatas.com.crt +LLDAP_LDAPS_OPTIONS__KEY_FILE=/certs/private/ldap.otmatas.com.key # (optional) SMTP for user-self-service - comment out if not used LLDAP_SMTP_OPTIONS__ENABLE_PASSWORD_RESET=true -LLDAP_SMTP_OPTIONS__SERVER=smtp.otmatas.com +LLDAP_SMTP_OPTIONS__SERVER=mail.otmatas.com LLDAP_SMTP_OPTIONS__PORT=587 LLDAP_SMTP_OPTIONS__SMTP_ENCRYPTION=STARTTLS -LLDAP_SMTP_OPTIONS__USER=no-reply@example.com -LLDAP_SMTP_OPTIONS__PASSWORD=SuperSecretSMTPPassword -LLDAP_SMTP_OPTIONS__FROM="No-Reply " -LLDAP_SMTP_OPTIONS__TO="Admin " \ No newline at end of file +LLDAP_SMTP_OPTIONS__USER= +LLDAP_SMTP_OPTIONS__PASSWORD= +LLDAP_SMTP_OPTIONS__FROM="No-Reply " # Must match domain +LLDAP_SMTP_OPTIONS__TO="Admin "