From b6c169046bf6bbda965f3e83e0af20bcfe2acf13 Mon Sep 17 00:00:00 2001 From: brnl <3243133+brnl@users.noreply.github.com> Date: Sun, 22 Jun 2025 22:15:34 +0000 Subject: [PATCH] Generate a 64 byte key, instead of 224 Homarr expects exactly a 64 character long secret key. See #72 . --- container_configs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container_configs.py b/container_configs.py index 1d7f439..3620cd2 100644 --- a/container_configs.py +++ b/container_configs.py @@ -215,7 +215,7 @@ def prowlarr(self): ) def homarr(self): - key = os.urandom(124).hex() + key = os.urandom(32).hex() # Because os.urandom(32) generates 32 random bytes, and .hex() converts each byte into two hexadecimal characters. return ( ' homarr:\n' ' image: ghcr.io/homarr-labs/homarr:latest\n'