fix forgejo-runner: use local URL instead of public FQDN

Runner on the same host cannot reach Forgejo via the public HTTPS URL
during boot (ACME certs not ready, nginx not fully up). Use the local
HTTP endpoint instead.
This commit is contained in:
steffen 2026-03-14 12:52:46 +01:00
parent 82f3be3b9d
commit da219a52ec

View file

@ -12,7 +12,7 @@
services.forgejo-runner = {
enable = true;
url = "https://${constants.services.forgejo.fqdn}";
url = "http://127.0.0.1:${toString constants.services.forgejo.port}";
tokenFile = config.sops.templates."forgejo-runner-token".path;
};