diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-05-22 13:53:03 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-05-22 13:53:03 -0500 |
commit | aa06fc584b7a5f87a75722e0015097cd666f1961 (patch) | |
tree | f5273e331d286c1e6c75eab906950e857d44bb61 /docs/configuration | |
parent | 72189d227f01f7b6e69a947776238931b500c3ed (diff) | |
download | pleroma-aa06fc584b7a5f87a75722e0015097cd666f1961.tar.gz |
Fix MediaProxy Invalidation for Http method
Diffstat (limited to 'docs/configuration')
-rw-r--r-- | docs/configuration/cheatsheet.md | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md index 505acb293..e841c2bec 100644 --- a/docs/configuration/cheatsheet.md +++ b/docs/configuration/cheatsheet.md @@ -283,10 +283,11 @@ This strategy allow perform custom http request to purge cache. Example: ```elixir -config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http, - method: :purge, - headers: [], - options: [] +config :pleroma, Pleroma.Web.MediaProxy.Invalidation.Http, %{ + "method" => :purge, + "headers" => [], + "options" => [] +} ``` ## Link previews |