2021-04-11 03:51:00 +07:00
|
|
|
---
|
2019-03-03 04:27:54 +07:00
|
|
|
###############################################################
|
|
|
|
# Authelia minimal configuration #
|
|
|
|
###############################################################
|
|
|
|
|
|
|
|
port: 9091
|
2020-06-17 13:25:35 +07:00
|
|
|
tls_cert: /config/ssl/cert.pem
|
|
|
|
tls_key: /config/ssl/key.pem
|
2019-03-03 04:27:54 +07:00
|
|
|
|
2021-06-01 11:09:50 +07:00
|
|
|
logging:
|
|
|
|
level: debug
|
2019-03-03 04:27:54 +07:00
|
|
|
|
2019-04-25 04:52:08 +07:00
|
|
|
jwt_secret: unsecure_secret
|
|
|
|
|
2019-03-03 04:27:54 +07:00
|
|
|
default_redirection_url: https://home.example.com:8080/
|
|
|
|
|
|
|
|
authentication_backend:
|
|
|
|
file:
|
2020-06-17 13:25:35 +07:00
|
|
|
path: /config/users.yml
|
2019-03-03 04:27:54 +07:00
|
|
|
|
|
|
|
session:
|
|
|
|
secret: unsecure_session_secret
|
|
|
|
domain: example.com
|
2019-04-25 04:52:08 +07:00
|
|
|
inactivity: 5
|
|
|
|
expiration: 8
|
2020-04-04 06:11:33 +07:00
|
|
|
remember_me_duration: 1y
|
2019-03-03 04:27:54 +07:00
|
|
|
|
|
|
|
storage:
|
|
|
|
local:
|
2020-06-17 13:25:35 +07:00
|
|
|
path: /config/db.sqlite
|
2019-03-03 04:27:54 +07:00
|
|
|
|
|
|
|
totp:
|
|
|
|
issuer: example.com
|
|
|
|
|
|
|
|
access_control:
|
|
|
|
default_policy: deny
|
|
|
|
|
|
|
|
rules:
|
2019-03-04 05:51:52 +07:00
|
|
|
- domain: singlefactor.example.com
|
2019-03-03 04:27:54 +07:00
|
|
|
policy: one_factor
|
|
|
|
|
2019-11-02 21:32:58 +07:00
|
|
|
- domain: "*.example.com"
|
2019-03-03 04:27:54 +07:00
|
|
|
subject: "group:admins"
|
|
|
|
policy: two_factor
|
|
|
|
|
|
|
|
- domain: dev.example.com
|
|
|
|
resources:
|
2019-11-02 21:32:58 +07:00
|
|
|
- "^/users/john/.*$"
|
2019-03-03 04:27:54 +07:00
|
|
|
subject: "user:john"
|
|
|
|
policy: two_factor
|
|
|
|
|
|
|
|
- domain: dev.example.com
|
|
|
|
resources:
|
2019-11-02 21:32:58 +07:00
|
|
|
- "^/users/harry/.*$"
|
2019-03-03 04:27:54 +07:00
|
|
|
subject: "user:harry"
|
|
|
|
policy: two_factor
|
|
|
|
|
2019-11-02 21:32:58 +07:00
|
|
|
- domain: "*.mail.example.com"
|
2019-03-03 04:27:54 +07:00
|
|
|
subject: "user:bob"
|
|
|
|
policy: two_factor
|
|
|
|
|
|
|
|
- domain: dev.example.com
|
|
|
|
resources:
|
2019-11-02 21:32:58 +07:00
|
|
|
- "^/users/bob/.*$"
|
2019-03-03 04:27:54 +07:00
|
|
|
subject: "user:bob"
|
|
|
|
policy: two_factor
|
|
|
|
|
2019-11-02 21:32:58 +07:00
|
|
|
regulation:
|
2019-03-03 04:27:54 +07:00
|
|
|
max_retries: 3
|
2021-01-04 17:28:55 +07:00
|
|
|
find_time: 5
|
2020-04-09 08:05:17 +07:00
|
|
|
ban_time: 10
|
2019-03-03 04:27:54 +07:00
|
|
|
|
|
|
|
notifier:
|
|
|
|
smtp:
|
2019-11-02 21:32:58 +07:00
|
|
|
host: smtp
|
2019-03-03 04:27:54 +07:00
|
|
|
port: 1025
|
|
|
|
sender: admin@example.com
|
2021-04-11 03:51:00 +07:00
|
|
|
disable_require_tls: true
|
|
|
|
...
|