2019-03-22 22:54:27 +07:00
|
|
|
###############################################################
|
|
|
|
# Authelia minimal configuration #
|
|
|
|
###############################################################
|
|
|
|
|
|
|
|
port: 9091
|
|
|
|
|
2020-03-10 02:57:53 +07:00
|
|
|
log_level: debug
|
2019-03-22 22:54:27 +07:00
|
|
|
|
2019-04-25 04:52:08 +07:00
|
|
|
jwt_secret: unsecure_secret
|
|
|
|
|
2019-03-22 22:54:27 +07:00
|
|
|
authentication_backend:
|
|
|
|
file:
|
2019-11-25 03:27:59 +07:00
|
|
|
path: /var/lib/authelia/users.yml
|
2019-03-22 22:54:27 +07:00
|
|
|
|
|
|
|
session:
|
|
|
|
secret: unsecure_session_secret
|
|
|
|
domain: example.com
|
2019-12-06 15:59:32 +07:00
|
|
|
expiration: 3600 # 1 hour
|
|
|
|
inactivity: 300 # 5 minutes
|
2020-04-04 06:11:33 +07:00
|
|
|
remember_me_duration: 1y
|
2019-03-22 22:54:27 +07:00
|
|
|
|
|
|
|
storage:
|
|
|
|
local:
|
2019-12-07 23:40:42 +07:00
|
|
|
path: /var/lib/authelia/db.sqlite
|
2019-03-22 22:54:27 +07:00
|
|
|
|
2019-03-28 03:57:16 +07:00
|
|
|
# The Duo Push Notification API configuration
|
|
|
|
duo_api:
|
|
|
|
hostname: duo.example.com
|
|
|
|
integration_key: ABCDEFGHIJKL
|
|
|
|
secret_key: abcdefghijklmnopqrstuvwxyz123456789
|
|
|
|
|
2019-03-22 22:54:27 +07:00
|
|
|
access_control:
|
|
|
|
default_policy: bypass
|
|
|
|
rules:
|
2019-11-25 03:27:59 +07:00
|
|
|
- domain: "public.example.com"
|
|
|
|
policy: bypass
|
|
|
|
- domain: "secure.example.com"
|
|
|
|
policy: two_factor
|
2019-03-22 22:54:27 +07:00
|
|
|
|
|
|
|
notifier:
|
|
|
|
smtp:
|
2019-11-02 21:32:58 +07:00
|
|
|
host: smtp
|
2019-03-22 22:54:27 +07:00
|
|
|
port: 1025
|
|
|
|
sender: admin@example.com
|
2019-12-30 09:03:51 +07:00
|
|
|
disable_require_tls: true
|