60 lines
974 B
YAML
60 lines
974 B
YAML
---
|
|
###############################################################
|
|
# Authelia configuration #
|
|
###############################################################
|
|
|
|
default_redirection_url: https://home.example.de
|
|
|
|
server:
|
|
host: authelia
|
|
port: 9091
|
|
|
|
log:
|
|
level: warn
|
|
|
|
theme: auto
|
|
|
|
authentication_backend:
|
|
password_reset:
|
|
disable: true
|
|
file:
|
|
path: /config/users_database.yml
|
|
|
|
access_control:
|
|
default_policy: deny
|
|
rules:
|
|
- domain: home.example.de
|
|
policy: one_factor
|
|
|
|
totp:
|
|
disable: true
|
|
issuer: authelia.com
|
|
|
|
webauthn:
|
|
disable: false
|
|
|
|
session:
|
|
name: authelia_example
|
|
expiration: 3600
|
|
inactivity: 300
|
|
domain: example.de
|
|
|
|
redis:
|
|
host: authelia-redis
|
|
port: 6379
|
|
|
|
regulation:
|
|
max_retries: 3
|
|
find_time: 120
|
|
ban_time: 300
|
|
|
|
storage:
|
|
local:
|
|
path: /config/db.sqlite3
|
|
|
|
notifier:
|
|
smtp:
|
|
username: example@gmail.com
|
|
host: smtp.gmail.com
|
|
port: 587
|
|
sender: mail@example.de
|