From b057941defbdafc3742723ba54a5c73354c56cde Mon Sep 17 00:00:00 2001 From: Akumatic Date: Wed, 28 Jan 2026 17:18:35 +0000 Subject: [PATCH] Add hostRule for internal fetching Renovate communicates with the API over the local port, but gets the public clone url back. Use a hostrule to override the public adress with the internal one --- config.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config.js b/config.js index 8f4118c..1daf710 100644 --- a/config.js +++ b/config.js @@ -10,4 +10,13 @@ module.exports = { "$schema": "https://docs.renovatebot.com/renovate-schema.json" }, "optimizeForDisabled": true, + hostRules: [ + { + matchHost: "git.akumatic.eu", + hostType: "gitea", + resolveHost: "server", + protocol: "http", + port: 3000 + } + ] }; \ No newline at end of file