diff options
author | Maxim Filippov <colixer@gmail.com> | 2019-11-14 23:45:29 +0900 |
---|---|---|
committer | Maxim Filippov <colixer@gmail.com> | 2019-11-14 23:45:29 +0900 |
commit | 114930b5fd816657c21c5fbe33845fd3742c9c23 (patch) | |
tree | 8048239cc3562033dba47db9308159c25a177c18 /docs/configuration | |
parent | 30af5da33043192dff626e869f2628ffc709f836 (diff) | |
parent | 09b4f7269e5307f29fc8ca7b548e93cd93836dc5 (diff) | |
download | pleroma-114930b5fd816657c21c5fbe33845fd3742c9c23.tar.gz |
Merge branch 'develop' into feature/admin-api-list-statuses-for-a-given-instance
Diffstat (limited to 'docs/configuration')
-rw-r--r-- | docs/configuration/cheatsheet.md | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md index 8f609fcfd..7832f6962 100644 --- a/docs/configuration/cheatsheet.md +++ b/docs/configuration/cheatsheet.md @@ -180,6 +180,14 @@ config :pleroma, :frontend_configurations, These settings **need to be complete**, they will override the defaults. +### :static_fe + +Render profiles and posts using server-generated HTML that is viewable without using JavaScript. + +Available options: + +* `enabled` - Enables the rendering of static HTML. Defaults to `false`. + ### :assets This section configures assets to be used with various frontends. Currently the only option @@ -523,7 +531,7 @@ config :pleroma, :workers, Configuration for [Quantum](https://github.com/quantum-elixir/quantum-core) jobs scheduler. -See [Quantum readme](https://github.com/quantum-elixir/quantum-core#usage) for the list of supported options. +See [Quantum readme](https://github.com/quantum-elixir/quantum-core#usage) for the list of supported options. Example: @@ -593,6 +601,10 @@ See the [Quack Github](https://github.com/azohra/quack) for more details ## Database options ### RUM indexing for full text search + +!!! warning + It is recommended to use PostgreSQL v11 or newer. We have seen some minor issues with lower PostgreSQL versions. + * `rum_enabled`: If RUM indexes should be used. Defaults to `false`. RUM indexes are an alternative indexing scheme that is not included in PostgreSQL by default. While they may eventually be mainlined, for now they have to be installed as a PostgreSQL extension from https://github.com/postgrespro/rum. @@ -793,4 +805,3 @@ config :auto_linker, rel: "ugc" ] ``` - |