From 75b4d373dbfc5597229f4779b67a06b23eedce54 Mon Sep 17 00:00:00 2001 From: pazpi Date: Tue, 10 Mar 2026 23:07:45 +0100 Subject: [PATCH] Force Forgejo to listen on all port --- modules/services/forgejo.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/services/forgejo.nix b/modules/services/forgejo.nix index 52f0ee5..6dcbaed 100644 --- a/modules/services/forgejo.nix +++ b/modules/services/forgejo.nix @@ -84,6 +84,8 @@ in ROOT_URL = "https://git.${cfg.proxy.domain}"; START_SSH_SERVER = true; SSH_PORT = sshPort; + # Listen on all interfaces so git push/pull via SSH works from other hosts + SSH_LISTEN_HOST = "0.0.0.0"; HTTP_PORT = httpPort; }; actions = {