From ceee428450807f40c505d76404396fb1cb6b588b Mon Sep 17 00:00:00 2001 From: fr33domlover Date: Tue, 27 Sep 2022 18:09:31 +0000 Subject: [PATCH] INSTALL.md: Fix SSH server key generation command, must use PEM format Because that's what the 'ssh' package knows how to handle Maybe it can handle OpenSSH format too, anyway I didn't check, may look into this in the future --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index d63f58e..a211e99 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -102,7 +102,7 @@ Build. This will also automatically install the GHC Haskell compiler. Generate a new SSH key with a blank password: - $ ssh-keygen -t rsa -f config/ssh-host-key + $ ssh-keygen -t rsa -m PEM -f config/ssh-host-key Update the settings to specify correct database connection details and other settings.