2019-03-02 21:27:54 +00:00
|
|
|
###############################################################
|
|
|
|
# Authelia minimal configuration #
|
|
|
|
###############################################################
|
|
|
|
|
|
|
|
port: 9091
|
|
|
|
|
|
|
|
logs_level: debug
|
|
|
|
|
2019-04-24 21:52:08 +00:00
|
|
|
jwt_secret: unsecure_secret
|
|
|
|
|
2019-03-02 21:27:54 +00:00
|
|
|
default_redirection_url: https://home.example.com:8080/
|
|
|
|
|
|
|
|
authentication_backend:
|
|
|
|
file:
|
2019-11-24 20:27:59 +00:00
|
|
|
path: /var/lib/authelia/users.yml
|
2019-03-02 21:27:54 +00:00
|
|
|
|
|
|
|
session:
|
|
|
|
secret: unsecure_session_secret
|
|
|
|
domain: example.com
|
2019-04-24 21:52:08 +00:00
|
|
|
inactivity: 5
|
|
|
|
expiration: 8
|
2019-03-02 21:27:54 +00:00
|
|
|
|
|
|
|
storage:
|
|
|
|
local:
|
2019-12-07 16:40:42 +00:00
|
|
|
path: /var/lib/authelia/db.sqlite
|
2019-03-02 21:27:54 +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-03-02 21:27:54 +00:00
|
|
|
policy: one_factor
|
|
|
|
|
2019-11-02 14:32:58 +00:00
|
|
|
- domain: "*.example.com"
|
2019-03-02 21:27:54 +00:00
|
|
|
subject: "group:admins"
|
|
|
|
policy: two_factor
|
|
|
|
|
|
|
|
- domain: dev.example.com
|
|
|
|
resources:
|
2019-11-02 14:32:58 +00:00
|
|
|
- "^/users/john/.*$"
|
2019-03-02 21:27:54 +00:00
|
|
|
subject: "user:john"
|
|
|
|
policy: two_factor
|
|
|
|
|
|
|
|
- domain: dev.example.com
|
|
|
|
resources:
|
2019-11-02 14:32:58 +00:00
|
|
|
- "^/users/harry/.*$"
|
2019-03-02 21:27:54 +00:00
|
|
|
subject: "user:harry"
|
|
|
|
policy: two_factor
|
|
|
|
|
2019-11-02 14:32:58 +00:00
|
|
|
- domain: "*.mail.example.com"
|
2019-03-02 21:27:54 +00:00
|
|
|
subject: "user:bob"
|
|
|
|
policy: two_factor
|
|
|
|
|
|
|
|
- domain: dev.example.com
|
|
|
|
resources:
|
2019-11-02 14:32:58 +00:00
|
|
|
- "^/users/bob/.*$"
|
2019-03-02 21:27:54 +00:00
|
|
|
subject: "user:bob"
|
|
|
|
policy: two_factor
|
|
|
|
|
2019-11-02 14:32:58 +00:00
|
|
|
regulation:
|
2019-03-02 21:27:54 +00:00
|
|
|
max_retries: 3
|
2019-04-24 21:52:08 +00:00
|
|
|
find_time: 3
|
2019-03-02 21:27:54 +00:00
|
|
|
ban_time: 5
|
|
|
|
|
|
|
|
notifier:
|
|
|
|
smtp:
|
2019-11-02 14:32:58 +00:00
|
|
|
host: smtp
|
2019-03-02 21:27:54 +00:00
|
|
|
port: 1025
|
|
|
|
sender: admin@example.com
|
2019-12-30 02:03:51 +00:00
|
|
|
disable_require_tls: true
|