Update configuration.yml

apply new configuration changes
This commit is contained in:
LRVT 2024-03-15 21:33:20 +01:00 committed by GitHub
parent 6e6b5c89d0
commit 93111827ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,16 +4,17 @@
###############################################################
server:
host: 0.0.0.0
port: 9091
address: 'tcp://:9091/'
log:
level: debug
theme: dark
# This secret can also be set using the env variables AUTHELIA_JWT_SECRET_FILE
jwt_secret: a_very_important_secret
default_redirection_url: https://auth.example.com # replace with your domain name
identity_validation:
reset_password:
jwt_secret: unsecure_jwt_secret
totp:
issuer: authelia.com
@ -59,10 +60,13 @@ session:
name: authelia_session
# This secret can also be set using the env variables AUTHELIA_SESSION_SECRET_FILE
secret: unsecure_session_secret
expiration: 3600 # 1 hour
inactivity: 300 # 5 minutes
domain: example.com # Should match whatever your root protected domain is
expiration: 1h # 1 hour
inactivity: 5m # 5 minutes
cookies:
- domain: lrvt.de
authelia_url: 'https://example.com'
default_redirection_url: 'https://www.example.com' # must be diffent to authelia_url
redis:
host: authelia-redis
port: 6379
@ -92,9 +96,8 @@ notifier:
# username: test
# # This secret can also be set using the env variables AUTHELIA_NOTIFIER_SMTP_PASSWORD_FILE
# password: password
# host: mail.example.com
# port: 25
# sender: admin@example.com
# address: address: smtp://smtp.gmail.com:465
# sender: "MySender <admin@example.com>"
filesystem:
filename: /config/notifications.txt
...