mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2025-02-24 00:48:43 +00:00
Compare commits
3 Commits
ded229e84c
...
6b9374dc8e
Author | SHA1 | Date | |
---|---|---|---|
|
6b9374dc8e | ||
|
90aa21c8ed | ||
|
6a27814f85 |
@ -57,13 +57,21 @@ session:
|
|||||||
host: authelia-redis
|
host: authelia-redis
|
||||||
port: 6379
|
port: 6379
|
||||||
# This secret can also be set using the env variables AUTHELIA_SESSION_REDIS_PASSWORD_FILE
|
# This secret can also be set using the env variables AUTHELIA_SESSION_REDIS_PASSWORD_FILE
|
||||||
# password: authelia
|
password: SuperSecureRedisAuthPassword # must be the same as in the docker-compose.yml defined for the redis service
|
||||||
|
|
||||||
regulation:
|
regulation:
|
||||||
max_retries: 3
|
max_retries: 3
|
||||||
find_time: 120
|
find_time: 120
|
||||||
ban_time: 300
|
ban_time: 300
|
||||||
|
|
||||||
|
# yubikey support
|
||||||
|
webauthn:
|
||||||
|
disable: false
|
||||||
|
display_name: Authelia
|
||||||
|
attestation_conveyance_preference: indirect
|
||||||
|
user_verification: preferred
|
||||||
|
timeout: 60s
|
||||||
|
|
||||||
storage:
|
storage:
|
||||||
encryption_key: a_very_important_secret # Now required
|
encryption_key: a_very_important_secret # Now required
|
||||||
local:
|
local:
|
||||||
|
@ -24,6 +24,7 @@ services:
|
|||||||
redis:
|
redis:
|
||||||
image: redis:alpine
|
image: redis:alpine
|
||||||
container_name: authelia-redis
|
container_name: authelia-redis
|
||||||
|
command: redis-server --requirepass SuperSecureRedisAuthPassword # also reflect this in the authelia config file
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/authelia/redis:/data
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/authelia/redis:/data
|
||||||
networks:
|
networks:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user