From da219a52ec8cf562ea69dbd0f519a26869e720eb Mon Sep 17 00:00:00 2001 From: steffen Date: Sat, 14 Mar 2026 12:52:46 +0100 Subject: [PATCH] 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. --- hosts/cryodev-main/services/forgejo-runner.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/cryodev-main/services/forgejo-runner.nix b/hosts/cryodev-main/services/forgejo-runner.nix index 57d86f2..e2a5c1c 100644 --- a/hosts/cryodev-main/services/forgejo-runner.nix +++ b/hosts/cryodev-main/services/forgejo-runner.nix @@ -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; };