45 lines
1.7 KiB
YAML
45 lines
1.7 KiB
YAML
## Note: the container by default expects to find this file at /config/configuration.yml.
|
|
|
|
## The theme to display: light, dark, grey, auto.
|
|
theme: auto
|
|
|
|
## The secret used to generate JWT tokens when validating user identity by email confirmation. JWT Secret can also be
|
|
## set using a secret: https://www.authelia.com/c/secrets
|
|
jwt_secret: a_very_important_secret
|
|
|
|
##
|
|
## Storage Provider Configuration
|
|
##
|
|
## The available providers are: `local`, `mysql`, `postgres`. You must use one and only one of these providers.
|
|
storage:
|
|
## The encryption key that is used to encrypt sensitive information in the database. Must be a string with a minimum
|
|
## length of 20. Please see the docs if you configure this with an undesirable key and need to change it, you MUST use
|
|
## the CLI to change this in the database if you want to change it from a previously configured value.
|
|
# encryption_key: you_must_generate_a_random_string_of_more_than_twenty_chars_and_configure_this
|
|
|
|
##
|
|
## Local (Storage Provider)
|
|
##
|
|
## This stores the data in a SQLite3 Database.
|
|
## This is only recommended for lightweight non-stateful installations.
|
|
##
|
|
## Important: Kubernetes (or HA) users must read https://www.authelia.com/t/statelessness
|
|
##
|
|
local:
|
|
## Path to the SQLite3 Database.
|
|
path: /data/db.sqlite3
|
|
|
|
##
|
|
## Notification Provider
|
|
##
|
|
## Notifications are sent to users when they require a password reset, a Webauthn registration or a TOTP registration.
|
|
## The available providers are: filesystem, smtp. You must use only one of these providers.
|
|
notifier:
|
|
##
|
|
## File System (Notification Provider)
|
|
##
|
|
## Important: Kubernetes (or HA) users must read https://www.authelia.com/t/statelessness
|
|
##
|
|
filesystem:
|
|
filename: /data/notification.txt
|