From 97aecd3ddcf5a2d659065f280720a8f42baa1318 Mon Sep 17 00:00:00 2001 From: Patrick Fic <> Date: Thu, 22 Jul 2021 08:40:05 -0700 Subject: [PATCH] IO-594 add SSH key support for AH --- server/data/autohouse.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/server/data/autohouse.js b/server/data/autohouse.js index f8873c684..d34b4c1da 100644 --- a/server/data/autohouse.js +++ b/server/data/autohouse.js @@ -25,7 +25,10 @@ const ftpSetup = { port: process.env.AUTOHOUSE_PORT, username: process.env.AUTOHOUSE_USER, password: process.env.AUTOHOUSE_PASSWORD, - //debug: console.log, + debug: console.log, + algorithms: { + serverHostKey: ["ssh-rsa", "ssh-dss"], + }, }; exports.default = async (req, res) => {