55 lines
1.2 KiB
YAML
55 lines
1.2 KiB
YAML
---
|
|
###############################################################
|
|
# Authelia minimal configuration #
|
|
###############################################################
|
|
|
|
server:
|
|
address: 'tcp://:9091'
|
|
tls:
|
|
certificate: /pki/public.backend.crt
|
|
key: /pki/private.backend.pem
|
|
|
|
log:
|
|
level: debug
|
|
|
|
jwt_secret: unsecure_secret
|
|
|
|
authentication_backend:
|
|
file:
|
|
path: /config/users.yml
|
|
|
|
session:
|
|
secret: unsecure_session_secret
|
|
expiration: 3600 # 1 hour
|
|
inactivity: 300 # 5 minutes
|
|
remember_me: 1y
|
|
cookies:
|
|
- domain: 'example.com'
|
|
authelia_url: 'https://login.example.com:8080'
|
|
|
|
storage:
|
|
encryption_key: a_not_so_secure_encryption_key
|
|
local:
|
|
path: /config/db.sqlite
|
|
|
|
# The Duo Push Notification API configuration
|
|
duo_api:
|
|
hostname: duo.example.com
|
|
integration_key: ABCDEFGHIJKL
|
|
secret_key: abcdefghijklmnopqrstuvwxyz123456789
|
|
|
|
access_control:
|
|
default_policy: bypass
|
|
rules:
|
|
- domain: "public.example.com"
|
|
policy: bypass
|
|
- domain: "secure.example.com"
|
|
policy: two_factor
|
|
|
|
notifier:
|
|
smtp:
|
|
address: 'smtp://smtp:1025'
|
|
sender: admin@example.com
|
|
disable_require_tls: true
|
|
...
|