mirror of https://github.com/authelia/authelia.git
67 lines
1.3 KiB
YAML
67 lines
1.3 KiB
YAML
---
|
|
certificates_directory: '/certs/'
|
|
|
|
server:
|
|
address: 'tcp://:9091'
|
|
asset_path: '/config/assets/'
|
|
tls:
|
|
certificate: '/pki/public.backend.crt'
|
|
key: '/pki/private.backend.pem'
|
|
endpoints:
|
|
authz:
|
|
ext-authz:
|
|
implementation: 'ExtAuthz'
|
|
authn_strategies: []
|
|
|
|
log:
|
|
level: 'debug'
|
|
|
|
storage:
|
|
encryption_key: 'a_not_so_secure_encryption_key'
|
|
local:
|
|
path: '/config/db.sqlite'
|
|
|
|
notifier:
|
|
smtp:
|
|
address: 'smtp://mail.example.com:1025'
|
|
sender: 'admin@example.com'
|
|
|
|
identity_validation:
|
|
reset_password:
|
|
jwt_secret: 'a_very_important_secret'
|
|
|
|
session:
|
|
secret: 'unsecure_session_secret'
|
|
cookies:
|
|
- name: 'authelia_session'
|
|
domain: 'example.com'
|
|
authelia_url: 'https://login.example.com:8080/'
|
|
expiration: '1 hour'
|
|
inactivity: '5 minutes'
|
|
remember_me: '1 year'
|
|
|
|
authentication_backend:
|
|
file:
|
|
path: '/config/users.yml'
|
|
|
|
totp:
|
|
disable_reuse_security_policy: true
|
|
|
|
webauthn:
|
|
disable: false
|
|
|
|
access_control:
|
|
default_policy: 'deny'
|
|
rules:
|
|
- domain: ['home.example.com', 'public.example.com']
|
|
policy: 'bypass'
|
|
- domain: 'deny.example.com'
|
|
policy: 'deny'
|
|
- domain: 'admin.example.com'
|
|
policy: 'two_factor'
|
|
- domain: 'secure.example.com'
|
|
policy: 'two_factor'
|
|
- domain: 'singlefactor.example.com'
|
|
policy: 'one_factor'
|
|
...
|