From 531a55018429236d01db83832b7525b0a99a346e Mon Sep 17 00:00:00 2001 From: flisk Date: Sat, 18 Feb 2023 14:13:04 +0100 Subject: [PATCH] fix invalid proxy_hide_header in example config --- docs/docs/configuration/storing_remote_media.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/docs/configuration/storing_remote_media.md b/docs/docs/configuration/storing_remote_media.md index ebea01339..1d60053ca 100644 --- a/docs/docs/configuration/storing_remote_media.md +++ b/docs/docs/configuration/storing_remote_media.md @@ -23,7 +23,8 @@ as soon as the post is received by your instance. proxy_buffering on; chunked_transfer_encoding on; proxy_ignore_headers Cache-Control Expires; - proxy_hide_header Cache-Control Expires; + proxy_hide_header Cache-Control; + proxy_hide_header Expires; proxy_pass http://127.0.0.1:4000; } ```