mirror of https://github.com/authelia/authelia.git
97 lines
1.9 KiB
YAML
97 lines
1.9 KiB
YAML
---
|
|
certificates_directory: '/certs/'
|
|
|
|
server:
|
|
address: 'tcp://:9091'
|
|
tls:
|
|
certificate: '/pki/public.backend.crt'
|
|
key: '/pki/private.backend.pem'
|
|
|
|
log:
|
|
level: 'trace'
|
|
|
|
storage:
|
|
encryption_key: 'a_not_so_secure_encryption_key'
|
|
local:
|
|
path: '/tmp/db.sqlite3'
|
|
|
|
notifier:
|
|
filesystem:
|
|
filename: '/tmp/notifier.html'
|
|
|
|
identity_validation:
|
|
reset_password:
|
|
jwt_secret: 'a_very_important_secret'
|
|
|
|
regulation:
|
|
max_retries: 3
|
|
find_time: '5 minutes'
|
|
ban_time: '15 minutes'
|
|
|
|
session:
|
|
secret: 'unsecure_session_secret'
|
|
cookies:
|
|
- domain: 'example.com'
|
|
authelia_url: 'https://login.example.com:8080'
|
|
default_redirection_url: 'https://home.example.com:8080/'
|
|
expiration: '1 hour'
|
|
inactivity: '5 minutes'
|
|
remember_me: '1 year'
|
|
|
|
authentication_backend:
|
|
file:
|
|
path: '/config/users.yml'
|
|
|
|
totp:
|
|
issuer: 'example.com'
|
|
disable_reuse_security_policy: true
|
|
|
|
webauthn:
|
|
disable: false
|
|
|
|
duo_api:
|
|
hostname: 'duo.example.com'
|
|
integration_key: 'ABCDEFGHIJKL'
|
|
secret_key: 'abcdefghijklmnopqrstuvwxyz123456789'
|
|
enable_self_enrollment: true
|
|
|
|
access_control:
|
|
default_policy: 'two_factor'
|
|
|
|
rules:
|
|
- domain: 'singlefactor.example.com'
|
|
policy: 'one_factor'
|
|
|
|
- domain: 'public.example.com'
|
|
policy: 'bypass'
|
|
|
|
- domain: 'secure.example.com'
|
|
policy: 'two_factor'
|
|
|
|
- domain: '*.example.com'
|
|
subject: 'group:admins'
|
|
policy: 'two_factor'
|
|
|
|
- domain: 'dev.example.com'
|
|
resources:
|
|
- '^/users/john/.*$'
|
|
subject: 'user:john'
|
|
policy: 'two_factor'
|
|
|
|
- domain: 'dev.example.com'
|
|
resources:
|
|
- '^/users/harry/.*$'
|
|
subject: 'user:harry'
|
|
policy: 'two_factor'
|
|
|
|
- domain: '*.mail.example.com'
|
|
subject: 'user:bob'
|
|
policy: 'two_factor'
|
|
|
|
- domain: 'dev.example.com'
|
|
resources:
|
|
- '^/users/bob/.*$'
|
|
subject: 'user:bob'
|
|
policy: 'two_factor'
|
|
...
|