mirror of
https://github.com/nextcloud/docker.git
synced 2025-07-22 07:08:06 +02:00
Allow REDIS_CLUSTER environment variable to use Redis in cluster mode
Signed-off-by: Nick Martin <284356+n1mmy@users.noreply.github.com> Signed-off-by: Nick Martin <nim@lock-the-door.lan>
This commit is contained in:
parent
85eb58a828
commit
f756178d10
2 changed files with 24 additions and 0 deletions
|
@ -132,6 +132,26 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
|
|||
} > /usr/local/etc/php/conf.d/redis-session.ini
|
||||
fi
|
||||
|
||||
if [ -n "${REDIS_CLUSTER+x}" ]; then
|
||||
|
||||
echo "Configuring Rediscluster as session handler"
|
||||
{
|
||||
file_env REDIS_HOST_PASSWORD
|
||||
echo 'session.save_handler = rediscluster'
|
||||
# check if redis password has been set
|
||||
if [ -n "${REDIS_HOST_PASSWORD+x}" ]; then
|
||||
echo "session.save_path = \"seed[]=${REDIS_CLUSTER}&auth=${REDIS_HOST_PASSWORD}\""
|
||||
else
|
||||
echo "session.save_path = \"seed[]=${REDIS_CLUSTER}\""
|
||||
fi
|
||||
echo "redis.session.locking_enabled = 1"
|
||||
echo "redis.session.lock_retries = -1"
|
||||
# redis.session.lock_wait_time is specified in microseconds.
|
||||
# Wait 10ms before retrying the lock rather than the default 2ms.
|
||||
echo "redis.session.lock_wait_time = 10000"
|
||||
} > /usr/local/etc/php/conf.d/redis-session.ini
|
||||
fi
|
||||
|
||||
# If another process is syncing the html folder, wait for
|
||||
# it to be done, then escape initalization.
|
||||
(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue