diff options
author | Alex Gleason <alex@alexgleason.me> | 2020-10-14 12:33:24 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2020-10-14 12:33:24 -0500 |
commit | 83770b7b391fdf8bdc22f63047b1cf444a7b16ce (patch) | |
tree | bba3b4d867ee5cdc07165784868c28f174c10317 /docs/installation/otp_en.md | |
parent | 7d8f610720abdadeff9238aa8a345a91e473e0fa (diff) | |
parent | 20137056900f97af34f4433858cbdf69be6c9840 (diff) | |
download | pleroma-83770b7b391fdf8bdc22f63047b1cf444a7b16ce.tar.gz pleroma-83770b7b391fdf8bdc22f63047b1cf444a7b16ce.zip |
Merge remote-tracking branch 'upstream/develop' into aliases
Diffstat (limited to 'docs/installation/otp_en.md')
-rw-r--r-- | docs/installation/otp_en.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/installation/otp_en.md b/docs/installation/otp_en.md index 92584d80d..62d4c8a72 100644 --- a/docs/installation/otp_en.md +++ b/docs/installation/otp_en.md @@ -27,17 +27,18 @@ Other than things bundled in the OTP release Pleroma depends on: * PostgreSQL (also utilizes extensions in postgresql-contrib) * nginx (could be swapped with another reverse proxy but this guide covers only it) * certbot (for Let's Encrypt certificates, could be swapped with another ACME client, but this guide covers only it) +* libmagic/file === "Alpine" ``` echo "http://nl.alpinelinux.org/alpine/latest-stable/community" >> /etc/apk/repositories apk update - apk add curl unzip ncurses postgresql postgresql-contrib nginx certbot + apk add curl unzip ncurses postgresql postgresql-contrib nginx certbot file-dev ``` === "Debian/Ubuntu" ``` - apt install curl unzip libncurses5 postgresql postgresql-contrib nginx certbot + apt install curl unzip libncurses5 postgresql postgresql-contrib nginx certbot libmagic-dev ``` ### Installing optional packages |