diff options
author | lain <lain@soykaf.club> | 2023-04-26 12:19:46 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2023-04-26 12:19:46 +0000 |
commit | d97425d49e9bbc62c01e3bc6874b8d1067e46fd6 (patch) | |
tree | 06d672d11eb4b9f6cc1a1fe892c28f86d0d8eb7a /docs/configuration | |
parent | 18913c4cd8bebc6391612f472330a008ce30a19b (diff) | |
parent | af38c6104ea0a5724d169dbe63efca7e158dbeea (diff) | |
download | pleroma-d97425d49e9bbc62c01e3bc6874b8d1067e46fd6.tar.gz pleroma-d97425d49e9bbc62c01e3bc6874b8d1067e46fd6.zip |
Merge branch 'duponin/remove-ssh' into 'develop'
Remove SSH/BBS feature from core
Closes #932, #2389, and #2931
See merge request pleroma/pleroma!3872
Diffstat (limited to 'docs/configuration')
-rw-r--r-- | docs/configuration/cheatsheet.md | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md index bbdf30a0f..70abe3e0c 100644 --- a/docs/configuration/cheatsheet.md +++ b/docs/configuration/cheatsheet.md @@ -873,21 +873,8 @@ This will probably take a long time. ### BBS / SSH access -To enable simple command line interface accessible over ssh, add a setting like this to your configuration file: - -```exs -app_dir = File.cwd! -priv_dir = Path.join([app_dir, "priv/ssh_keys"]) - -config :esshd, - enabled: true, - priv_dir: priv_dir, - handler: "Pleroma.BBS.Handler", - port: 10_022, - 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 -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` +This feature has been removed from Pleroma core. +However, a client has been made and is available at https://git.pleroma.social/Duponin/sshocial. ### :gopher * `enabled`: Enables the gopher interface |