22 lines
No EOL
998 B
Bash
22 lines
No EOL
998 B
Bash
# Authentik .env app configuration
|
|
# Configures the Authentik application
|
|
# File location: /srv/authentik/.env
|
|
# More information - git repo: https://git.starcat.systems/starcat-infra/auth-server
|
|
# More information - handbook: https://about.starcat.systems/handbook/infrastructure/security/authentik/
|
|
# See the documentation for more information: https://docs.goauthentik.io/docs/install-config/configuration/
|
|
PG_PASS=*REDACTED*
|
|
AUTHENTIK_SECRET_KEY=*REDACTED*
|
|
AUTHENTIK_ERROR_REPORTING__ENABLED=true
|
|
# SMTP Host Emails are sent to
|
|
AUTHENTIK_EMAIL__HOST=*REDACTED*
|
|
AUTHENTIK_EMAIL__PORT=465
|
|
# Optionally authenticate (don't add quotation marks to your password)
|
|
AUTHENTIK_EMAIL__USERNAME=accounts-noreply@starcat.systems
|
|
AUTHENTIK_EMAIL__PASSWORD=*REDACTED*
|
|
# Use StartTLS
|
|
AUTHENTIK_EMAIL__USE_TLS=false
|
|
# Use SSL
|
|
AUTHENTIK_EMAIL__USE_SSL=true
|
|
AUTHENTIK_EMAIL__TIMEOUT=10
|
|
# Email address authentik will send from, should have a correct @domain
|
|
AUTHENTIK_EMAIL__FROM=accounts-noreply@starcat.systems |