From 2ade10e260d38eb4eb62b305e4dbd45ae9de6c98 Mon Sep 17 00:00:00 2001 From: karlquint <113249386+karlquint@users.noreply.github.com> Date: Fri, 17 Oct 2025 15:42:57 +0200 Subject: [PATCH 1/2] Update guide_pretix.rst When checking the system health via the proposed GET request (see here: https://docs.pretix.eu/self-hosting/maintenance/#uptime-monitoring), it returned a message that "Cache was not available". I checked the pretix docs and adapted the section on redis in the .pretix.cfg --- source/guide_pretix.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/guide_pretix.rst b/source/guide_pretix.rst index aee6dd60..aa232b2e 100644 --- a/source/guide_pretix.rst +++ b/source/guide_pretix.rst @@ -124,6 +124,12 @@ Now you need to set up the configuration, create the file ``~/.pretix.cfg`` and port=587 tls=on + [redis] + # use the Redis UNIX socket; pick a DB number you reserve for pretix caches/sessions + location=unix:///home/qhc/.redis/sock?db=1 + # store Django sessions in Redis too (recommended) + sessions=true + Initialize database ------------------- From 8c096f44b7f1a487c2411dc34c8e8316c52cd041 Mon Sep 17 00:00:00 2001 From: karlquint <113249386+karlquint@users.noreply.github.com> Date: Fri, 17 Oct 2025 15:46:15 +0200 Subject: [PATCH 2/2] Update guide_pretix.rst --- source/guide_pretix.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/guide_pretix.rst b/source/guide_pretix.rst index aa232b2e..e027e1e7 100644 --- a/source/guide_pretix.rst +++ b/source/guide_pretix.rst @@ -126,7 +126,7 @@ Now you need to set up the configuration, create the file ``~/.pretix.cfg`` and [redis] # use the Redis UNIX socket; pick a DB number you reserve for pretix caches/sessions - location=unix:///home/qhc/.redis/sock?db=1 + location=unix:///home/isabell/.redis/sock?db=1 # store Django sessions in Redis too (recommended) sessions=true