diff options
author | href <href@random.sh> | 2020-05-14 21:36:31 +0200 |
---|---|---|
committer | href <href@random.sh> | 2020-06-16 15:15:50 +0200 |
commit | ec1452fd1cdb9cb1db9b8bad872916d3213489e2 (patch) | |
tree | be89364e07901a2fcaf5b943ac3492e71463b1df /docs/installation/otp_en.md | |
parent | 1e49bfa9acb4176a161181edcaf04e886c638c42 (diff) | |
download | pleroma-ec1452fd1cdb9cb1db9b8bad872916d3213489e2.tar.gz pleroma-ec1452fd1cdb9cb1db9b8bad872916d3213489e2.zip |
Pleroma.MIME: use gen_magic
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 86135cd20..0cad29bc8 100644 --- a/docs/installation/otp_en.md +++ b/docs/installation/otp_en.md @@ -27,15 +27,16 @@ 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 ```sh tab="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 libmagic ``` ```sh tab="Debian/Ubuntu" -apt install curl unzip libncurses5 postgresql postgresql-contrib nginx certbot +apt install curl unzip libncurses5 postgresql postgresql-contrib nginx certbot libmagic ``` ## Setup |