From f9005dd4d0437bbe4d0e58c6ddd103af733fa298 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Sat, 27 Apr 2024 23:19:20 +0200 Subject: [PATCH] forgejo/openssh: listen on all interfaces this doesn't help us with anything yet, but it does at least mean that this openssh now also listens on IPv6, which it didn't before. (reaching the container from the outside still does not work) --- parsons/forgejo.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/parsons/forgejo.nix b/parsons/forgejo.nix index 6d71ab2..1322f7a 100644 --- a/parsons/forgejo.nix +++ b/parsons/forgejo.nix @@ -67,10 +67,6 @@ }; services.openssh = { enable = true; - listenAddresses = [ { - addr = config.containers.forgejo.localAddress; - port = 22; - } ]; settings = { PasswordAuthentication = false; AcceptEnv = "GIT_PROTOCOL";