diff options
Diffstat (limited to 'docs')
-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 |