2021-04-10 20:51:00 +00:00
|
|
|
---
|
2020-05-27 11:55:44 +00:00
|
|
|
###############################################################
|
|
|
|
# Authelia minimal configuration #
|
|
|
|
###############################################################
|
|
|
|
|
2021-08-02 11:55:30 +00:00
|
|
|
jwt_secret: unsecure_secret
|
2020-05-27 11:55:44 +00:00
|
|
|
|
|
|
|
server:
|
2021-08-02 11:55:30 +00:00
|
|
|
port: 9091
|
2020-05-27 11:55:44 +00:00
|
|
|
path: auth
|
2021-08-02 11:55:30 +00:00
|
|
|
tls:
|
|
|
|
certificate: /config/ssl/cert.pem
|
|
|
|
key: /config/ssl/key.pem
|
2020-05-27 11:55:44 +00:00
|
|
|
|
2021-06-08 13:15:43 +00:00
|
|
|
log:
|
2021-06-01 04:09:50 +00:00
|
|
|
level: debug
|
2020-05-27 11:55:44 +00:00
|
|
|
|
|
|
|
authentication_backend:
|
|
|
|
file:
|
2020-06-17 06:25:35 +00:00
|
|
|
path: /config/users.yml
|
2020-05-27 11:55:44 +00:00
|
|
|
|
|
|
|
session:
|
|
|
|
secret: unsecure_session_secret
|
|
|
|
domain: example.com
|
2021-04-10 20:51:00 +00:00
|
|
|
expiration: 3600 # 1 hour
|
|
|
|
inactivity: 300 # 5 minutes
|
2023-01-12 10:57:44 +00:00
|
|
|
remember_me: 1y
|
2020-05-27 11:55:44 +00:00
|
|
|
|
|
|
|
storage:
|
2021-11-25 01:56:58 +00:00
|
|
|
encryption_key: a_not_so_secure_encryption_key
|
2020-05-27 11:55:44 +00:00
|
|
|
local:
|
2020-06-17 06:25:35 +00:00
|
|
|
path: /config/db.sqlite
|
2020-05-27 11:55:44 +00:00
|
|
|
|
|
|
|
access_control:
|
|
|
|
default_policy: bypass
|
|
|
|
rules:
|
|
|
|
- domain: "public.example.com"
|
|
|
|
policy: bypass
|
|
|
|
- domain: "admin.example.com"
|
|
|
|
policy: two_factor
|
|
|
|
- domain: "secure.example.com"
|
|
|
|
policy: two_factor
|
|
|
|
- domain: "singlefactor.example.com"
|
|
|
|
policy: one_factor
|
|
|
|
|
|
|
|
notifier:
|
|
|
|
smtp:
|
|
|
|
host: smtp
|
|
|
|
port: 1025
|
|
|
|
sender: admin@example.com
|
2021-04-10 20:51:00 +00:00
|
|
|
disable_require_tls: true
|
|
|
|
...
|