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