From 7992d4eea195779f48ce3b0d8444b3e263ba7f5a Mon Sep 17 00:00:00 2001 From: Ben Johnson <ben.johnson@corgibytes.com> Date: Mon, 10 Dec 2018 14:56:30 -0500 Subject: [PATCH] Adding note to Redis documentation Describing the configuration option available for password authentication. --- docs/simplesamlphp-maintenance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/simplesamlphp-maintenance.md b/docs/simplesamlphp-maintenance.md index ff4581b03..1d99f19f7 100644 --- a/docs/simplesamlphp-maintenance.md +++ b/docs/simplesamlphp-maintenance.md @@ -161,7 +161,7 @@ The required tables are created automatically. If you are storing data from mult To store sessions in Redis, set the `store.type` option to `redis`. -By default SimpleSAMLphp will attempt to connect to Redis on the `localhost` at port `6379`. These can be configured via the `store.redis.host` and `store.redis.port` options, respectively. You may also set a key prefix with the `store.redis.prefix` option. +By default SimpleSAMLphp will attempt to connect to Redis on the `localhost` at port `6379`. These can be configured via the `store.redis.host` and `store.redis.port` options, respectively. You may also set a key prefix with the `store.redis.prefix` option. For Redis instances that [require authentication](https://redis.io/commands/auth), use the `store.redis.password` option. ## Metadata storage -- GitLab