From 0d04c568ad540969dad4f118dd601897e3a1716c Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Thu, 30 Apr 2026 15:30:21 +0200 Subject: [PATCH] fix(invidious): companion key must be exactly 16 chars (rand -hex 8) --- install/invidious-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/invidious-install.sh b/install/invidious-install.sh index 357fce2f..003c35bc 100644 --- a/install/invidious-install.sh +++ b/install/invidious-install.sh @@ -53,7 +53,7 @@ $STD make msg_ok "Built Invidious" msg_info "Configuring Invidious" -SECRET_KEY="$(openssl rand -hex 16)" +SECRET_KEY="$(openssl rand -hex 8)" HMAC_KEY="$(openssl rand -hex 32)" sed -e '\~^db:~,\~dbname:~d' \ -e "s~^#database_.*~database_url: postgres://${PG_DB_USER}:${PG_DB_PASS}@localhost:5432/${PG_DB_NAME}~" \