2021-04-10 20:51:00 +00:00
|
|
|
---
|
2019-01-30 22:33:14 +00:00
|
|
|
###############################################################
|
|
|
|
# Authelia minimal configuration #
|
|
|
|
###############################################################
|
|
|
|
|
|
|
|
port: 9091
|
2020-06-17 06:25:35 +00:00
|
|
|
tls_cert: /config/ssl/cert.pem
|
|
|
|
tls_key: /config/ssl/key.pem
|
2019-01-30 22:33:14 +00:00
|
|
|
|
2021-06-01 04:09:50 +00:00
|
|
|
logging:
|
|
|
|
level: debug
|
2019-01-30 22:33:14 +00:00
|
|
|
|
|
|
|
authentication_backend:
|
|
|
|
file:
|
2020-06-17 06:25:35 +00:00
|
|
|
path: /config/users.yml
|
2019-01-30 22:33:14 +00:00
|
|
|
|
|
|
|
session:
|
|
|
|
domain: example.com
|
2021-04-10 20:51:00 +00:00
|
|
|
expiration: 3600 # 1 hour
|
|
|
|
inactivity: 300 # 5 minutes
|
2020-04-03 23:11:33 +00:00
|
|
|
remember_me_duration: 1y
|
2019-01-30 22:33:14 +00:00
|
|
|
|
|
|
|
storage:
|
|
|
|
local:
|
2020-01-17 19:46:51 +00:00
|
|
|
path: /tmp/db.sqlite3
|
2019-01-30 22:33:14 +00:00
|
|
|
|
|
|
|
totp:
|
|
|
|
issuer: example.com
|
|
|
|
|
|
|
|
access_control:
|
|
|
|
default_policy: deny
|
|
|
|
|
|
|
|
rules:
|
2019-03-03 22:51:52 +00:00
|
|
|
- domain: singlefactor.example.com
|
2019-01-30 22:33:14 +00:00
|
|
|
policy: one_factor
|
|
|
|
|
2019-03-22 15:54:27 +00:00
|
|
|
- domain: public.example.com
|
|
|
|
policy: bypass
|
|
|
|
|
2021-03-05 04:18:31 +00:00
|
|
|
- domain: secure.example.com
|
|
|
|
policy: bypass
|
|
|
|
methods:
|
|
|
|
- OPTIONS
|
|
|
|
|
2019-03-23 14:44:46 +00:00
|
|
|
- domain: secure.example.com
|
|
|
|
policy: two_factor
|
|
|
|
|
2019-11-24 20:27:59 +00:00
|
|
|
- domain: "*.example.com"
|
2019-01-30 22:33:14 +00:00
|
|
|
subject: "group:admins"
|
|
|
|
policy: two_factor
|
|
|
|
|
|
|
|
- domain: dev.example.com
|
|
|
|
resources:
|
2019-11-24 20:27:59 +00:00
|
|
|
- "^/users/john/.*$"
|
2019-01-30 22:33:14 +00:00
|
|
|
subject: "user:john"
|
|
|
|
policy: two_factor
|
|
|
|
|
|
|
|
- domain: dev.example.com
|
|
|
|
resources:
|
2019-11-24 20:27:59 +00:00
|
|
|
- "^/users/harry/.*$"
|
2019-01-30 22:33:14 +00:00
|
|
|
subject: "user:harry"
|
|
|
|
policy: two_factor
|
|
|
|
|
2019-11-24 20:27:59 +00:00
|
|
|
- domain: "*.mail.example.com"
|
2019-01-30 22:33:14 +00:00
|
|
|
subject: "user:bob"
|
|
|
|
policy: two_factor
|
|
|
|
|
|
|
|
- domain: dev.example.com
|
|
|
|
resources:
|
2019-11-24 20:27:59 +00:00
|
|
|
- "^/users/bob/.*$"
|
2019-01-30 22:33:14 +00:00
|
|
|
subject: "user:bob"
|
|
|
|
policy: two_factor
|
|
|
|
|
2019-11-24 20:27:59 +00:00
|
|
|
regulation:
|
2019-01-30 22:33:14 +00:00
|
|
|
# Set it to 0 to disable max_retries.
|
|
|
|
max_retries: 3
|
2020-01-21 00:10:00 +00:00
|
|
|
# The user is banned if the authentication failed `max_retries` times in a `find_time` seconds window.
|
2019-03-02 21:27:54 +00:00
|
|
|
find_time: 300
|
2019-01-30 22:33:14 +00:00
|
|
|
# The length of time before a banned user can login again.
|
2019-03-02 21:27:54 +00:00
|
|
|
ban_time: 900
|
2019-01-30 22:33:14 +00:00
|
|
|
|
|
|
|
notifier:
|
|
|
|
smtp:
|
2019-11-02 14:32:58 +00:00
|
|
|
host: smtp
|
2019-01-30 22:33:14 +00:00
|
|
|
port: 1025
|
|
|
|
sender: admin@example.com
|
2021-04-10 20:51:00 +00:00
|
|
|
disable_require_tls: true
|
|
|
|
...
|