From 5b93d3cf927ee3f4ab3b04db1a5df84a66d1245d Mon Sep 17 00:00:00 2001 From: David Hotham Date: Thu, 26 May 2022 12:24:51 +0100 Subject: [PATCH] Allow RSA signatures using SHA-1 hash algorithm This was disabled by default at openssh 8.8 but is still used by some git implementations eg Azure DevOps Signed-off-by: David Hotham --- docker/ssh_config | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/ssh_config b/docker/ssh_config index 0964a1b9a..a544adf27 100644 --- a/docker/ssh_config +++ b/docker/ssh_config @@ -3,3 +3,5 @@ StrictHostKeyChecking yes IdentityFile /etc/fluxd/ssh/identity IdentityFile /var/fluxd/keygen/identity LogLevel error +HostkeyAlgorithms +ssh-rsa +PubkeyAcceptedAlgorithms +ssh-rsa