Skip to content
Snippets Groups Projects
Unverified Commit 5b932e39 authored by Hagen's avatar Hagen Committed by GitHub
Browse files

Add REDIS_HOST_USER variable to specify a redis user (#2359)


Signed-off-by: default avatarhagene <hagene@uio.no>
parent 08ac2488
Branches
Tags
No related merge requests found
...@@ -14,4 +14,8 @@ if (getenv('REDIS_HOST')) { ...@@ -14,4 +14,8 @@ if (getenv('REDIS_HOST')) {
} elseif (getenv('REDIS_HOST')[0] != '/') { } elseif (getenv('REDIS_HOST')[0] != '/') {
$CONFIG['redis']['port'] = 6379; $CONFIG['redis']['port'] = 6379;
} }
if (getenv('REDIS_HOST_USER') !== false) {
$CONFIG['redis']['user'] = (string) getenv('REDIS_HOST_USER');
}
} }
...@@ -236,6 +236,7 @@ To use Redis for memory caching as well as PHP session storage, specify the foll ...@@ -236,6 +236,7 @@ To use Redis for memory caching as well as PHP session storage, specify the foll
- `REDIS_HOST` (not set by default) Name of Redis container - `REDIS_HOST` (not set by default) Name of Redis container
- `REDIS_HOST_PORT` (default: `6379`) Optional port for Redis, only use for external Redis servers that run on non-standard ports. - `REDIS_HOST_PORT` (default: `6379`) Optional port for Redis, only use for external Redis servers that run on non-standard ports.
- `REDIS_HOST_USER` (not set by default) Optional username for Redis, only use for external Redis servers that require a user.
- `REDIS_HOST_PASSWORD` (not set by default) Redis password - `REDIS_HOST_PASSWORD` (not set by default) Redis password
Check the [Nextcloud documentation](https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/caching_configuration.html) for more information. Check the [Nextcloud documentation](https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/caching_configuration.html) for more information.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment