Compare commits

...

3 Commits

Author SHA1 Message Date
Ben Nicholson 70e965ee15
Merge 9c9e9454c2 into 85b83aff5f 2024-05-02 10:45:37 +02:00
Ben Nicholson 9c9e9454c2 Update README.md
Fixed spelling
2024-04-22 21:53:18 +02:00
Ben Nicholson 7da17d0662 Update README.md
Added SMTP environment variables to the docker compose configuration
2024-04-22 21:53:18 +02:00
1 changed files with 9 additions and 0 deletions

View File

@ -162,6 +162,15 @@ services:
# You can also set a different database:
# - LLDAP_DATABASE_URL=mysql://mysql-user:password@mysql-server/my-database
# - LLDAP_DATABASE_URL=postgres://postgres-user:password@postgres-server/my-database
# If using SMTP, set the following variables
# - LLDAP_SMTP_OPTIONS__ENABLE_PASSWORD_RESET=true
# - LLDAP_SMTP_OPTIONS__SERVER=smtp.example.com
# - LLDAP_SMTP_OPTIONS__PORT=465 #Check your smtp providor's documentation for this setting
# - LLDAP_SMTP_OPTIONS__SMTP_ENCRYPTION=TLS #How the connection is encrypted, either "NONE" (no encryption), "TLS" or "STARTTLS".
# - LLDAP_SMTP_OPTIONS__USER=no-reply@example.com #The SMTP user, usually your email address
# - LLDAP_SMTP_OPTIONS__PASSWORD=PasswordGoesHere #The SMTP password
# - LLDAP_SMTP_OPTIONS__FROM=no-reply <no-reply@example.com> #The header field, optional: how the sender appears in the email. The first is a free-form name, followed by an email between <>.
# - LLDAP_SMTP_OPTIONS__TO=admin <admin@example.com> # Same for reply-to, optional.
```
Then the service will listen on two ports, one for LDAP and one for the web