summaryrefslogtreecommitdiff
path: root/docs/installation/otp_en.md
diff options
context:
space:
mode:
authorMark Felder <feld@FreeBSD.org>2020-10-05 12:40:53 -0500
committerMark Felder <feld@FreeBSD.org>2020-10-05 12:40:53 -0500
commit346cc3ac244384d37d1bcbbe888173725465a307 (patch)
tree61947d678e4f0a1be1a71e68f0bf4f03301eb725 /docs/installation/otp_en.md
parent3f201475e099aecf0c77ca5396b114433ea58224 (diff)
parent4b05eb9a321ebdc03588f786683e83427fe31f1c (diff)
downloadpleroma-346cc3ac244384d37d1bcbbe888173725465a307.tar.gz
pleroma-346cc3ac244384d37d1bcbbe888173725465a307.zip
Merge branch 'develop' into feature/1893-remote-emoji-packs-pagination
Diffstat (limited to 'docs/installation/otp_en.md')
-rw-r--r--docs/installation/otp_en.md21
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"