2020-02-04 21:18:02 +00:00
|
|
|
###############################################################
|
|
|
|
# Authelia minimal configuration #
|
|
|
|
###############################################################
|
|
|
|
|
|
|
|
port: 9091
|
2020-04-13 23:57:28 +00:00
|
|
|
tls_cert: /var/lib/authelia/ssl/cert.pem
|
|
|
|
tls_key: /var/lib/authelia/ssl/key.pem
|
2020-02-04 21:18:02 +00:00
|
|
|
|
2020-03-09 19:57:53 +00:00
|
|
|
log_level: debug
|
2020-02-04 21:18:02 +00:00
|
|
|
|
|
|
|
default_redirection_url: https://home.example.com:8080/
|
|
|
|
|
|
|
|
jwt_secret: unsecure_secret
|
|
|
|
|
|
|
|
authentication_backend:
|
|
|
|
file:
|
|
|
|
path: /var/lib/authelia/users.yml
|
|
|
|
|
|
|
|
session:
|
|
|
|
secret: unsecure_session_secret
|
|
|
|
domain: example.com
|
|
|
|
expiration: 3600 # 1 hour
|
|
|
|
inactivity: 300 # 5 minutes
|
2020-04-03 23:11:33 +00:00
|
|
|
remember_me_duration: 1y
|
2020-02-04 21:18:02 +00:00
|
|
|
|
|
|
|
storage:
|
|
|
|
local:
|
|
|
|
path: /var/lib/authelia/db.sqlite
|
|
|
|
|
|
|
|
access_control:
|
2020-03-06 00:31:09 +00:00
|
|
|
default_policy: deny
|
|
|
|
rules:
|
|
|
|
- domain: singlefactor.example.com
|
|
|
|
policy: one_factor
|
|
|
|
- domain: public.example.com
|
|
|
|
policy: bypass
|
|
|
|
- domain: home.example.com
|
|
|
|
policy: bypass
|
|
|
|
- domain: unsafe.local
|
|
|
|
policy: bypass
|
2020-02-04 21:18:02 +00:00
|
|
|
|
|
|
|
notifier:
|
|
|
|
smtp:
|
|
|
|
host: smtp
|
|
|
|
port: 1025
|
|
|
|
sender: admin@example.com
|
|
|
|
disable_require_tls: true
|