Add hostRule for internal fetching
All checks were successful
renovate / renovate (push) Successful in 1m47s

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
This commit is contained in:
2026-01-28 17:18:35 +00:00
parent a8a2370c11
commit b057941def

View File

@@ -10,4 +10,13 @@ module.exports = {
"$schema": "https://docs.renovatebot.com/renovate-schema.json" "$schema": "https://docs.renovatebot.com/renovate-schema.json"
}, },
"optimizeForDisabled": true, "optimizeForDisabled": true,
hostRules: [
{
matchHost: "git.akumatic.eu",
hostType: "gitea",
resolveHost: "server",
protocol: "http",
port: 3000
}
]
}; };