aboutsummaryrefslogtreecommitdiff
path: root/docs/configuration
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-05-22 18:32:27 +0000
committerlain <lain@soykaf.club>2020-05-22 18:32:27 +0000
commit124812282fd908467c9272aa5ab0d163bec7e4b3 (patch)
tree14b75871553bcf517bd0de6bbfeea4b88df5664d /docs/configuration
parent72189d227f01f7b6e69a947776238931b500c3ed (diff)
downloadpleroma-revert-6dd1575c.tar.gz
Revert "Merge branch 'issue/1509' into 'develop'"revert-6dd1575c
This reverts merge request !2539
Diffstat (limited to 'docs/configuration')
-rw-r--r--docs/configuration/cheatsheet.md34
1 files changed, 0 insertions, 34 deletions
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md
index 505acb293..f86bb4fbb 100644
--- a/docs/configuration/cheatsheet.md
+++ b/docs/configuration/cheatsheet.md
@@ -254,40 +254,6 @@ This section describe PWA manifest instance-specific values. Currently this opti
* `base_url`: The base URL to access a user-uploaded file. Useful when you want to proxy the media files via another host/CDN fronts.
* `proxy_opts`: All options defined in `Pleroma.ReverseProxy` documentation, defaults to `[max_body_length: (25*1_048_576)]`.
* `whitelist`: List of domains to bypass the mediaproxy
-* `invalidation`: options for remove media from cache after delete object:
- * `enabled`: Enables purge cache
- * `provider`: Which one of the [purge cache strategy](#purge-cache-strategy) to use.
-
-### Purge cache strategy
-
-#### Pleroma.Web.MediaProxy.Invalidation.Script
-
-This strategy allow perform external bash script to purge cache.
-Urls of attachments pass to script as arguments.
-
-* `script_path`: path to external script.
-
-Example:
-```elixir
-config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Script,
- script_path: "./installation/nginx-cache-purge.example"
-```
-
-#### Pleroma.Web.MediaProxy.Invalidation.Http
-
-This strategy allow perform custom http request to purge cache.
-
-* `method`: http method. default is `purge`
-* `headers`: http headers. default is empty
-* `options`: request options. default is empty
-
-Example:
-```elixir
-config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http,
- method: :purge,
- headers: [],
- options: []
-```
## Link previews