# LLDAP Configuration # Base DN for the LDAP directory LLDAP_LDAP_BASE_DN=dc=fig,dc=systems # Admin user configuration LLDAP_LDAP_USER_DN=admin LLDAP_LDAP_USER_EMAIL=admin@edfig.dev # Use a strong password (at least 16 characters, mix of letters, numbers, symbols) # Example format: MyS3cur3P@ssw0rd!2024#HomeL@b LLDAP_LDAP_USER_PASS=changeme_please_set_secure_password # JWT secret for session management (64+ character random string) # Generate with: openssl rand -hex 32 # Example format: a1b2c3d4e5f67890abcdef1234567890a1b2c3d4e5f67890abcdef1234567890 LLDAP_JWT_SECRET=changeme_please_set_random_secret # Database URL (SQLite by default) LLDAP_DATABASE_URL=sqlite:///data/users.db # Timezone TZ=America/New_York # Optional: SMTP configuration for password reset emails # LLDAP_SMTP_OPTIONS__SERVER=smtp.gmail.com # LLDAP_SMTP_OPTIONS__PORT=587 # LLDAP_SMTP_OPTIONS__SMTP_ENCRYPTION=STARTTLS # LLDAP_SMTP_OPTIONS__USER=your-email@gmail.com # LLDAP_SMTP_OPTIONS__PASSWORD=your-app-password # LLDAP_SMTP_OPTIONS__FROM=LLDAP Admin