aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2019-05-22 10:44:26 +0200
committerlain <lain@soykaf.club>2019-05-22 10:44:26 +0200
commitb22145cbc40b57cf83f6389f063a76a03625ff16 (patch)
treec6e44d26f0271edca12bfc283df6b76faecfb32e
parentdb9a82d168cfc452611a44d92df2b81a5e6d1e69 (diff)
downloadpleroma-b22145cbc40b57cf83f6389f063a76a03625ff16.tar.gz
Documentation: Specify PEM format for SSH keys.
Otherwise openssh-client 7.9 will generate a different format that can't be used by esshd.
-rw-r--r--docs/config.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/config.md b/docs/config.md
index 197326bbd..63ca61d1e 100644
--- a/docs/config.md
+++ b/docs/config.md
@@ -477,7 +477,7 @@ config :esshd,
password_authenticator: "Pleroma.BBS.Authenticator"
```
-Feel free to adjust the priv_dir and port number. Then you will have to create the key for the keys (in the example `priv/ssh_keys`) and create the host keys with `ssh-keygen -N "" -b 2048 -t rsa -f ssh_host_rsa_key`. After restarting, you should be able to connect to your Pleroma instance with `ssh username@server -p $PORT`
+Feel free to adjust the priv_dir and port number. Then you will have to create the key for the keys (in the example `priv/ssh_keys`) and create the host keys with `ssh-keygen -m PEM -N "" -b 2048 -t rsa -f ssh_host_rsa_key`. After restarting, you should be able to connect to your Pleroma instance with `ssh username@server -p $PORT`
## :auth