2021-04-10 20:51:00 +00:00
|
|
|
---
|
2019-01-30 22:33:14 +00:00
|
|
|
###############################################################
|
|
|
|
# Authelia minimal configuration #
|
|
|
|
###############################################################
|
|
|
|
|
2023-05-07 06:41:41 +00:00
|
|
|
theme: 'auto'
|
2021-06-18 07:15:58 +00:00
|
|
|
|
2021-08-02 11:55:30 +00:00
|
|
|
server:
|
2023-05-07 06:39:17 +00:00
|
|
|
address: 'tcp://:9091'
|
2021-08-02 11:55:30 +00:00
|
|
|
tls:
|
2023-05-07 06:41:41 +00:00
|
|
|
certificate: '/pki/public.backend.crt'
|
|
|
|
key: '/pki/private.backend.pem'
|
2021-08-02 11:55:30 +00:00
|
|
|
|
2022-06-14 07:20:13 +00:00
|
|
|
telemetry:
|
|
|
|
metrics:
|
|
|
|
enabled: true
|
2023-05-07 06:41:41 +00:00
|
|
|
address: 'tcp://:9959'
|
2022-06-14 07:20:13 +00:00
|
|
|
|
2021-06-08 13:15:43 +00:00
|
|
|
log:
|
2023-05-07 06:41:41 +00:00
|
|
|
level: 'debug'
|
2019-01-30 22:33:14 +00:00
|
|
|
|
|
|
|
authentication_backend:
|
|
|
|
file:
|
2023-05-07 06:41:41 +00:00
|
|
|
path: '/config/users.yml'
|
2019-01-30 22:33:14 +00:00
|
|
|
|
|
|
|
session:
|
2023-05-07 06:41:41 +00:00
|
|
|
expiration: '1h'
|
|
|
|
inactivity: '5m'
|
|
|
|
remember_me: '1y'
|
2023-01-25 09:36:40 +00:00
|
|
|
cookies:
|
|
|
|
- domain: 'example.com'
|
|
|
|
authelia_url: 'https://login.example.com:8080'
|
2019-01-30 22:33:14 +00:00
|
|
|
|
|
|
|
storage:
|
2023-05-07 06:41:41 +00:00
|
|
|
encryption_key: 'a_not_so_secure_encryption_key'
|
2019-01-30 22:33:14 +00:00
|
|
|
local:
|
2023-05-07 06:41:41 +00:00
|
|
|
path: '/tmp/db.sqlite3'
|
2019-01-30 22:33:14 +00:00
|
|
|
|
|
|
|
totp:
|
2023-05-07 06:41:41 +00:00
|
|
|
issuer: 'example.com'
|
2019-01-30 22:33:14 +00:00
|
|
|
|
|
|
|
access_control:
|
2023-05-07 06:41:41 +00:00
|
|
|
default_policy: 'deny'
|
2019-01-30 22:33:14 +00:00
|
|
|
|
|
|
|
rules:
|
2023-05-07 06:41:41 +00:00
|
|
|
- domain: 'singlefactor.example.com'
|
|
|
|
policy: 'one_factor'
|
2019-01-30 22:33:14 +00:00
|
|
|
|
2023-05-07 06:41:41 +00:00
|
|
|
- domain: 'public.example.com'
|
|
|
|
policy: 'bypass'
|
2019-03-22 15:54:27 +00:00
|
|
|
|
2023-05-07 06:41:41 +00:00
|
|
|
- domain: 'secure.example.com'
|
|
|
|
policy: 'bypass'
|
2021-03-05 04:18:31 +00:00
|
|
|
methods:
|
2023-05-07 06:41:41 +00:00
|
|
|
- 'OPTIONS'
|
2021-03-05 04:18:31 +00:00
|
|
|
|
2023-05-07 06:41:41 +00:00
|
|
|
- domain: 'secure.example.com'
|
|
|
|
policy: 'two_factor'
|
2019-03-23 14:44:46 +00:00
|
|
|
|
2023-05-07 06:41:41 +00:00
|
|
|
- domain: '*.example.com'
|
|
|
|
subject: 'group:admins'
|
|
|
|
policy: 'two_factor'
|
2019-01-30 22:33:14 +00:00
|
|
|
|
2023-05-07 06:41:41 +00:00
|
|
|
- domain: 'dev.example.com'
|
2019-01-30 22:33:14 +00:00
|
|
|
resources:
|
2023-05-07 06:41:41 +00:00
|
|
|
- '^/users/john/.*$'
|
|
|
|
subject: 'user:john'
|
|
|
|
policy: 'two_factor'
|
2019-01-30 22:33:14 +00:00
|
|
|
|
2023-05-07 06:41:41 +00:00
|
|
|
- domain: 'dev.example.com'
|
2019-01-30 22:33:14 +00:00
|
|
|
resources:
|
2023-05-07 06:41:41 +00:00
|
|
|
- '^/users/harry/.*$'
|
|
|
|
subject: 'user:harry'
|
|
|
|
policy: 'two_factor'
|
2019-01-30 22:33:14 +00:00
|
|
|
|
2023-05-07 06:41:41 +00:00
|
|
|
- domain: '*.mail.example.com'
|
|
|
|
subject: 'user:bob'
|
|
|
|
policy: 'two_factor'
|
2019-01-30 22:33:14 +00:00
|
|
|
|
2023-05-07 06:41:41 +00:00
|
|
|
- domain: 'dev.example.com'
|
2019-01-30 22:33:14 +00:00
|
|
|
resources:
|
2023-05-07 06:41:41 +00:00
|
|
|
- '^/users/bob/.*$'
|
|
|
|
subject: 'user:bob'
|
|
|
|
policy: 'two_factor'
|
2019-01-30 22:33:14 +00:00
|
|
|
|
2023-01-12 10:57:44 +00:00
|
|
|
|
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.
|
2023-05-07 06:41:41 +00:00
|
|
|
find_time: '5m'
|
2019-01-30 22:33:14 +00:00
|
|
|
# The length of time before a banned user can login again.
|
2023-05-07 06:41:41 +00:00
|
|
|
ban_time: '15m'
|
2019-01-30 22:33:14 +00:00
|
|
|
|
|
|
|
notifier:
|
|
|
|
smtp:
|
2023-05-07 06:39:17 +00:00
|
|
|
address: 'smtp://smtp:1025'
|
2023-05-07 06:41:41 +00:00
|
|
|
sender: 'admin@example.com'
|
2021-04-10 20:51:00 +00:00
|
|
|
disable_require_tls: true
|
2021-09-17 04:44:35 +00:00
|
|
|
ntp:
|
|
|
|
## NTP server address
|
2023-05-07 06:41:41 +00:00
|
|
|
address: 'time.cloudflare.com:123'
|
2021-09-17 04:44:35 +00:00
|
|
|
## ntp version
|
|
|
|
version: 4
|
|
|
|
## "maximum desynchronization" is the allowed offset time between the host and the ntp server
|
|
|
|
max_desync: 3s
|
|
|
|
## You can enable or disable the NTP synchronization check on startup
|
|
|
|
disable_startup_check: false
|
2022-04-02 22:32:57 +00:00
|
|
|
|
|
|
|
password_policy:
|
|
|
|
standard:
|
|
|
|
# Enables standard password Policy
|
2022-04-03 00:48:26 +00:00
|
|
|
enabled: false
|
2022-04-02 22:32:57 +00:00
|
|
|
min_length: 8
|
|
|
|
max_length: 0
|
|
|
|
require_uppercase: true
|
|
|
|
require_lowercase: true
|
|
|
|
require_number: true
|
|
|
|
require_special: true
|
|
|
|
zxcvbn:
|
|
|
|
## zxcvbn: uses zxcvbn for password strength checking (see: https://github.com/dropbox/zxcvbn)
|
|
|
|
## Note that the zxcvbn option does not prohibit the user from using a weak password,
|
|
|
|
## it only offers feedback about the strength of the password they are entering.
|
|
|
|
## if you need to enforce password rules, you should use `mode=classic`
|
|
|
|
enabled: false
|
2021-04-10 20:51:00 +00:00
|
|
|
...
|