From c2ef75e44fa7a33e9e5041cc26f2b6aa82b98b52 Mon Sep 17 00:00:00 2001 From: otmatas Date: Thu, 29 May 2025 09:57:27 +0000 Subject: [PATCH] Add lldap/lldap/.env.lldap --- lldap/lldap/.env.lldap | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 lldap/lldap/.env.lldap diff --git a/lldap/lldap/.env.lldap b/lldap/lldap/.env.lldap new file mode 100644 index 0000000..b37b1e6 --- /dev/null +++ b/lldap/lldap/.env.lldap @@ -0,0 +1,24 @@ +# Unix user and group IDs (match your host user) +UID=1000 +GID=1000 + +# Timezone for logs, etc. +TZ=Europe/Madrid + +# Security tokens (generate securely! e.g. `openssl rand -hex 32`) +LLDAP_JWT_SECRET= +LLDAP_KEY_SEED= + +# LDAP configuration +LLDAP_LDAP_BASE_DN=dc=otmatas,dc=com +LLDAP_LDAP_USER_PASS= + +# (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__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 "