diff --git a/examples/authelia/config/configuration.yml b/examples/authelia/config/configuration.yml index d5b084b..c5b197b 100644 --- a/examples/authelia/config/configuration.yml +++ b/examples/authelia/config/configuration.yml @@ -57,7 +57,7 @@ session: host: authelia-redis port: 6379 # 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 services regulation: max_retries: 3 diff --git a/examples/authelia/docker-compose.yml b/examples/authelia/docker-compose.yml index c5e3d6c..191c343 100644 --- a/examples/authelia/docker-compose.yml +++ b/examples/authelia/docker-compose.yml @@ -24,6 +24,7 @@ services: redis: image: redis:alpine container_name: authelia-redis + command: redis-server --requirepass SuperSecureRedisAuthPassword # also reflect this in the authelia config file volumes: - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/authelia/redis:/data networks: