From acbb6bfef74aea5aaf16d5b6ce5e260e53b8be18 Mon Sep 17 00:00:00 2001 From: Johanna Dorothea Reichmann Date: Thu, 9 Feb 2023 16:09:11 +0100 Subject: [PATCH] update(server): bump version to 25.0.3 --- roles/server/README.md | 7 +++++++ roles/server/defaults/main.yml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/roles/server/README.md b/roles/server/README.md index c7a6cf2..1dfacb7 100644 --- a/roles/server/README.md +++ b/roles/server/README.md @@ -12,3 +12,10 @@ so the host file permissions remain comprehensible. - `nextcloud_socket_path`: Setting this (to, for example, `{{ nextcloud_basepath }}/socket`), will make FPM listen on `{{ nextcloud_socket_path }}/nextcloud.sock` on the host, enabling you to use FPM to interface with nextcloud. + +### Redis over UNIX-Socket + +Set `REDIS_HOST` to a path in the container where the socket is mapped using +`nextcloud_container_extra_environment`. Also set `REDIS_HOST_PORT` to 0 +explicitely, as `redis.config.php` will set it to `null` otherwise, resulting +in an exception. Set your redis password in `REDIS_HOST_PASSWORD`. diff --git a/roles/server/defaults/main.yml b/roles/server/defaults/main.yml index ad89e0a..037e1dc 100644 --- a/roles/server/defaults/main.yml +++ b/roles/server/defaults/main.yml @@ -1,6 +1,6 @@ --- -nextcloud_version: 24.0.9 +nextcloud_version: 25.0.3 nextcloud_user: nextcloud nextcloud_basepath: /opt/nextcloud nextcloud_config_path: "{{ nextcloud_basepath }}/config"