From 947e29df900b678376177fffb03878dccdb784a3 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Wed, 7 Feb 2024 00:22:43 -0700 Subject: [PATCH] Update Docker & Kubernetes/Docker/Docker Compose/Authentik.md --- .../Docker/Docker Compose/Authentik.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/Docker & Kubernetes/Docker/Docker Compose/Authentik.md b/Docker & Kubernetes/Docker/Docker Compose/Authentik.md index 2b9d19c..05263d4 100644 --- a/Docker & Kubernetes/Docker/Docker Compose/Authentik.md +++ b/Docker & Kubernetes/Docker/Docker Compose/Authentik.md @@ -91,9 +91,24 @@ services: ```jsx title=".env" PG_PASS= AUTHENTIK_SECRET_KEY= +## SMTP Host Emails are sent to +#AUTHENTIK_EMAIL__HOST=localhost +#AUTHENTIK_EMAIL__PORT=25 +## Optionally authenticate (don't add quotation marks to your password) +#AUTHENTIK_EMAIL__USERNAME= +#AUTHENTIK_EMAIL__PASSWORD= +## Use StartTLS +#AUTHENTIK_EMAIL__USE_TLS=false +## Use SSL +#AUTHENTIK_EMAIL__USE_SSL=false +#AUTHENTIK_EMAIL__TIMEOUT=10 +## Email address authentik will send from, should have a correct @domain +#AUTHENTIK_EMAIL__FROM=authentik@localhost +COMPOSE_PORT_HTTP=80 +COMPOSE_PORT_HTTPS=443 ``` -!!! note "Generating a Password" +!!! note "Generating Passwords" Navigate to the online [PWGen Password Generator](https://pwgen.io/en/) to generate the passwords for `PG_PASS` (40 characters) and `AUTHENTIK_SECRET_KEY` (50 characters). Because of a PostgreSQL limitation, only passwords up to 99 characters are supported