2021-04-10 20:51:00 +00:00
|
|
|
---
|
2019-03-02 21:27:54 +00:00
|
|
|
###############################################################
|
|
|
|
# Authelia minimal configuration #
|
|
|
|
###############################################################
|
|
|
|
|
2021-08-02 11:55:30 +00:00
|
|
|
jwt_secret: unsecure_secret
|
|
|
|
default_redirection_url: https://home.example.com:8080/
|
|
|
|
|
|
|
|
server:
|
|
|
|
port: 9091
|
|
|
|
tls:
|
|
|
|
certificate: /config/ssl/cert.pem
|
|
|
|
key: /config/ssl/key.pem
|
2019-03-02 21:27:54 +00:00
|
|
|
|
2021-06-08 13:15:43 +00:00
|
|
|
log:
|
2021-06-01 04:09:50 +00:00
|
|
|
level: debug
|
2019-03-02 21:27:54 +00:00
|
|
|
|
|
|
|
authentication_backend:
|
|
|
|
file:
|
2020-06-17 06:25:35 +00:00
|
|
|
path: /config/users.yml
|
2019-03-02 21:27:54 +00:00
|
|
|
|
|
|
|
session:
|
|
|
|
secret: unsecure_session_secret
|
2023-01-12 10:57:44 +00:00
|
|
|
cookies:
|
|
|
|
- name: authelia_session
|
|
|
|
domain: example.com
|
|
|
|
inactivity: 5
|
|
|
|
expiration: 8
|
|
|
|
remember_me: 1y
|
2019-03-02 21:27:54 +00:00
|
|
|
|
|
|
|
storage:
|
2021-11-25 01:56:58 +00:00
|
|
|
encryption_key: a_not_so_secure_encryption_key
|
2019-03-02 21:27:54 +00:00
|
|
|
local:
|
2020-06-17 06:25:35 +00:00
|
|
|
path: /config/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
|
2021-01-04 10:28:55 +00:00
|
|
|
find_time: 5
|
2020-04-09 01:05:17 +00:00
|
|
|
ban_time: 10
|
2019-03-02 21:27:54 +00:00
|
|
|
|
|
|
|
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
|
2021-04-10 20:51:00 +00:00
|
|
|
disable_require_tls: true
|
|
|
|
...
|