diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-10-06 14:25:20 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-10-06 14:25:20 -0500 |
commit | cddca85c8404272080caa661ce59ab5dbafec794 (patch) | |
tree | aac5b9fe51b26999e2e184ddfa2b4829f33794a5 /docs/installation/otp_en.md | |
parent | ba7f9459b4798388eb4e441d096302c018354033 (diff) | |
parent | 2698bbc9f63d0bfd59de182d361db03d54aa2a68 (diff) | |
download | pleroma-cddca85c8404272080caa661ce59ab5dbafec794.tar.gz |
Merge branch 'develop' into revert/rich-media-censorship
Diffstat (limited to 'docs/installation/otp_en.md')
-rw-r--r-- | docs/installation/otp_en.md | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/installation/otp_en.md b/docs/installation/otp_en.md index b7e3bb2ac..92584d80d 100644 --- a/docs/installation/otp_en.md +++ b/docs/installation/otp_en.md @@ -40,6 +40,25 @@ Other than things bundled in the OTP release Pleroma depends on: apt install curl unzip libncurses5 postgresql postgresql-contrib nginx certbot ``` +### Installing optional packages + +Per [`docs/installation/optional/media_graphics_packages.md`](docs/installation/optional/media_graphics_packages.md): + * ImageMagick + * ffmpeg + * exiftool + +=== "Alpine" + ``` + echo "http://nl.alpinelinux.org/alpine/latest-stable/community" >> /etc/apk/repositories + apk update + apk add imagemagick ffmpeg exiftool + ``` + +=== "Debian/Ubuntu" + ``` + apt install imagemagick ffmpeg libimage-exiftool-perl + ``` + ## Setup ### Configuring PostgreSQL #### (Optional) Installing RUM indexes @@ -82,6 +101,8 @@ It is encouraged to check [Optimizing your PostgreSQL performance](../configurat If you are using PostgreSQL 12 or higher, add this to your Ecto database configuration ```elixir +# +config :pleroma, Pleroma.Repo, prepare: :named, parameters: [ plan_cache_mode: "force_custom_plan" |