From 223d5ebfc93ecb7b0895cc524f0aef781b4a0160 Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Sat, 4 Jul 2026 23:10:05 -0400 Subject: [PATCH] =?UTF-8?q?Fix=20GITEA=5FDOMAIN=20value=20=E2=80=94=20was?= =?UTF-8?q?=20set=20with=20an=20https://=20scheme=20prefix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git_pull_execute.sh, varaverk.plg, and gitea_ssh_setup.sh all treat GITEA_DOMAIN as a bare hostname (gitea_ssh_setup.sh even builds its own https:// API URL from it). The live value on HOST1 had the scheme included, which would build a malformed SSH URL (ssh://git@https://git.gmer4lfe.com:221/...) — hadn't been hit yet since HOST2's install succeeded via Tailscale peer detection before ever reaching this fallback tier. --- Configurations/master.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configurations/master.conf b/Configurations/master.conf index 4776292..4ca6831 100644 --- a/Configurations/master.conf +++ b/Configurations/master.conf @@ -274,7 +274,7 @@ # Falls back to GITEA_DOMAIN if local and Tailscale both fail. GITEA_CONTAINER="Gitea" GITEA_REPO_PATH="FailedProxy/Varaverk.git" - GITEA_DOMAIN="" # e.g. git.yourdomain.com — requires NPM + DNS + GITEA_DOMAIN="git.gmer4lfe.com" # e.g. git.yourdomain.com — requires NPM + DNS TARGET_DIR="/boot/config/plugins/varaverk" GITEA_SSH_KEY="/root/.ssh/unraid_gitea" SSH_PORT=221 # Gitea SSH port (default 22, Gitea often uses 221/222)