49 lines
No EOL
850 B
YAML
49 lines
No EOL
850 B
YAML
server:
|
|
host: 0.0.0.0
|
|
port: 9091
|
|
log:
|
|
level: warn
|
|
theme: dark
|
|
default_redirection_url: https://example.com
|
|
totp:
|
|
issuer: authelia.com
|
|
|
|
authentication_backend:
|
|
file:
|
|
path: /config/users_database.yml
|
|
password:
|
|
algorithm: argon2id
|
|
iterations: 1
|
|
salt_length: 16
|
|
parallelism: 8
|
|
memory: 64
|
|
|
|
access_control:
|
|
default_policy: deny
|
|
rules:
|
|
- domain: [ two.example.com ]
|
|
policy: two_factor
|
|
- domain: [ one.example.com ]
|
|
policy: one_factor
|
|
|
|
session:
|
|
name: authelia_session
|
|
expiration: 3600 # 1 hour
|
|
inactivity: 300 # 5 minutes
|
|
domain: example.com
|
|
|
|
regulation:
|
|
max_retries: 3
|
|
find_time: 120
|
|
ban_time: 300
|
|
|
|
storage:
|
|
local:
|
|
path: /config/db.sqlite3
|
|
|
|
notifier:
|
|
smtp:
|
|
username: example@example.com
|
|
host: smtp.gmail.com
|
|
port: 465
|
|
sender: example@example.com |