2023-10-09 18:33:55 +02:00
|
|
|
VIRTUAL_HOST={{ domains.nginx_virtual_host.authentik }}
|
2023-09-15 21:22:16 +02:00
|
|
|
VIRTUAL_PORT={{ authentik_port_http }}
|
2023-10-09 18:33:55 +02:00
|
|
|
LETSENCRYPT_HOST={{ domains.letsencrypt_host.authentik }}
|
|
|
|
LETSENCRYPT_EMAIL={{ letsencrypt_email }}
|
2023-09-13 18:03:24 +02:00
|
|
|
AUTHENTIK_REDIS__HOST="{{ container_names.authentik.redis }}"
|
|
|
|
AUTHENTIK_POSTGRESQL__HOST="{{ container_names.authentik.db }}"
|
|
|
|
AUTHENTIK_POSTGRESQL__USER={{ database_vars.postgres.authentik.user }}
|
|
|
|
AUTHENTIK_POSTGRESQL__NAME={{ database_vars.postgres.authentik.db }}
|
|
|
|
AUTHENTIK_POSTGRESQL__PASSWORD={{ database_vars.postgres.authentik.password }}
|
2022-12-14 21:41:29 +01:00
|
|
|
AUTHENTIK_SECRET_KEY={{ authentik_secret }}
|
|
|
|
AUTHENTIK_ERROR_REPORTING__ENABLED={{ authentik_error_reporting }}
|
|
|
|
# SMTP Host Emails are sent to
|
|
|
|
AUTHENTIK_EMAIL__HOST={{ authentik_email_host }}
|
|
|
|
AUTHENTIK_EMAIL__PORT={{ authentik_email_port }}
|
|
|
|
# Optionally authenticate (don't add quotation marks to your password)
|
|
|
|
AUTHENTIK_EMAIL__USERNAME={{ authentik_email_username }}
|
|
|
|
AUTHENTIK_EMAIL__PASSWORD={{ authentik_email_password }}
|
|
|
|
# Use StartTLS
|
|
|
|
AUTHENTIK_EMAIL__USE_TLS={{ authentik_email_use_tls }}
|
|
|
|
# Use SSL
|
|
|
|
AUTHENTIK_EMAIL__USE_SSL={{ authentik_email_use_ssl }}
|
|
|
|
AUTHENTIK_EMAIL__TIMEOUT={{ authentik_email_timeout }}
|
|
|
|
# Email address authentik will send from, should have a correct @domain
|
|
|
|
AUTHENTIK_EMAIL__FROM={{ authentik_email_from }}
|
|
|
|
AUTHENTIK_PORT_HTTP={{ authentik_port_http }}
|
|
|
|
AUTHENTIK_PORT_HTTPS={{ authentik_port_https }}
|
2023-01-11 01:06:23 +01:00
|
|
|
AUTHENTIK_DEFAULT_USER_CHANGE_EMAIL={{ authentik_allow_users_to_change_email }}
|
|
|
|
AUTHENTIK_DEFAULT_USER_CHANGE_NAME={{ authentik_allow_users_to_change_names }}
|
2022-12-16 11:52:21 +01:00
|
|
|
AUTHENTIK_DEFAULT_USER_CHANGE_USERNAME={{ authentik_allow_users_to_change_usernames }}
|
2023-09-15 21:22:16 +02:00
|
|
|
POSTGRES_USER={{ database_vars.postgres.authentik.user }}
|
|
|
|
POSTGRES_PASSWORD={{ database_vars.postgres.authentik.password }}
|
|
|
|
POSTGRES_DB={{ database_vars.postgres.authentik.db }}
|