From 83bd90937830de705b7d59d153f6e62bbd51f664 Mon Sep 17 00:00:00 2001 From: johba Date: Sat, 28 Mar 2026 10:09:59 +0000 Subject: [PATCH] fix: allow webhooks to private hosts in Forgejo compose template Forgejo blocks outgoing webhooks to non-allowlisted hosts by default. Woodpecker CI requires webhook delivery for pipeline triggering. Setting ALLOWED_HOST_LIST=private allows webhooks to any RFC1918 address. Co-Authored-By: Claude Opus 4.6 (1M context) --- bin/disinto | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/disinto b/bin/disinto index bc3340f..d9e3009 100755 --- a/bin/disinto +++ b/bin/disinto @@ -173,6 +173,7 @@ services: FORGEJO__server__HTTP_PORT: "3000" FORGEJO__security__INSTALL_LOCK: "true" FORGEJO__service__DISABLE_REGISTRATION: "true" + FORGEJO__webhook__ALLOWED_HOST_LIST: "private" networks: - disinto-net