2021-04-10 20:51:00 +00:00
|
|
|
---
|
2020-01-19 10:06:37 +00:00
|
|
|
###############################################################
|
|
|
|
# Authelia minimal configuration #
|
|
|
|
###############################################################
|
|
|
|
|
2021-08-02 11:55:30 +00:00
|
|
|
jwt_secret: unsecure_secret
|
|
|
|
|
|
|
|
server:
|
2023-05-07 06:39:17 +00:00
|
|
|
address: 'tcp://:9091'
|
|
|
|
asset_path: '/config/assets/'
|
2021-08-02 11:55:30 +00:00
|
|
|
tls:
|
2023-02-11 04:37:54 +00:00
|
|
|
certificate: /pki/public.backend.crt
|
|
|
|
key: /pki/private.backend.pem
|
2023-01-25 09:36:40 +00:00
|
|
|
endpoints:
|
|
|
|
authz:
|
|
|
|
forward-auth:
|
|
|
|
implementation: ForwardAuth
|
|
|
|
authn_strategies: []
|
2020-01-19 10:06:37 +00:00
|
|
|
|
2021-06-08 13:15:43 +00:00
|
|
|
log:
|
2021-06-01 04:09:50 +00:00
|
|
|
level: debug
|
2020-01-19 10:06:37 +00:00
|
|
|
|
|
|
|
authentication_backend:
|
|
|
|
file:
|
2020-06-17 06:25:35 +00:00
|
|
|
path: /config/users.yml
|
2020-01-19 10:06:37 +00:00
|
|
|
|
|
|
|
session:
|
|
|
|
secret: unsecure_session_secret
|
2021-04-10 20:51:00 +00:00
|
|
|
expiration: 3600 # 1 hour
|
|
|
|
inactivity: 300 # 5 minutes
|
2023-01-12 10:57:44 +00:00
|
|
|
remember_me: 1y
|
2023-01-25 09:36:40 +00:00
|
|
|
cookies:
|
|
|
|
- domain: 'example.com'
|
|
|
|
authelia_url: 'https://login.example.com:8080'
|
|
|
|
|
feat(session): add redis sentinel provider (#1768)
* feat(session): add redis sentinel provider
* refactor(session): use int for ports as per go standards
* refactor(configuration): adjust tests and validation
* refactor(configuration): add err format consts
* refactor(configuration): explicitly map redis structs
* refactor(session): merge redis/redis sentinel providers
* refactor(session): add additional checks to redis providers
* feat(session): add redis cluster provider
* fix: update config for new values
* fix: provide nil certpool to affected tests/mocks
* test: add additional tests to cover uncovered code
* docs: expand explanation of host and nodes relation for redis
* ci: add redis-sentinel to suite highavailability, add redis-sentinel quorum
* fix(session): sentinel password
* test: use redis alpine library image for redis sentinel, use expose instead of ports, use redis ip, adjust redis ip range, adjust redis config
* test: make entrypoint.sh executable, fix entrypoint.sh if/elif
* test: add redis failover tests
* test: defer docker start, adjust sleep, attempt logout before login, attempt visit before login and tune timeouts, add additional logging
* test: add sentinel integration test
* test: add secondary node failure to tests, fix password usage, bump test timeout, add sleep
* feat: use sentinel failover cluster
* fix: renamed addrs to sentineladdrs upstream
* test(session): sentinel failover
* test: add redis standard back into testing
* test: move redis standalone test to traefik2
* fix/docs: apply suggestions from code review
2021-03-09 23:03:05 +00:00
|
|
|
redis:
|
|
|
|
host: redis
|
|
|
|
port: 6379
|
|
|
|
username: authelia
|
|
|
|
password: redis-user-password
|
2020-01-19 10:06:37 +00:00
|
|
|
|
|
|
|
storage:
|
2021-11-25 01:56:58 +00:00
|
|
|
encryption_key: a_not_so_secure_encryption_key
|
2020-01-19 10:06:37 +00:00
|
|
|
local:
|
2020-06-17 06:25:35 +00:00
|
|
|
path: /config/db.sqlite
|
2020-01-19 10:06:37 +00:00
|
|
|
|
|
|
|
access_control:
|
|
|
|
default_policy: bypass
|
|
|
|
rules:
|
|
|
|
- domain: "public.example.com"
|
|
|
|
policy: bypass
|
|
|
|
- domain: "admin.example.com"
|
|
|
|
policy: two_factor
|
|
|
|
- domain: "secure.example.com"
|
|
|
|
policy: two_factor
|
|
|
|
- domain: "singlefactor.example.com"
|
|
|
|
policy: one_factor
|
|
|
|
|
2021-11-15 08:37:58 +00:00
|
|
|
ntp:
|
|
|
|
version: 3
|
|
|
|
|
2020-01-19 10:06:37 +00:00
|
|
|
notifier:
|
|
|
|
smtp:
|
2023-05-07 06:39:17 +00:00
|
|
|
address: 'smtp://smtp:1025'
|
2020-01-19 10:06:37 +00:00
|
|
|
sender: admin@example.com
|
2021-04-10 20:51:00 +00:00
|
|
|
disable_require_tls: true
|
|
|
|
...
|