fix invalid proxy_hide_header in example config
authorflisk <akkomadev.mvch71fq@flisk.xyz>
Sat, 18 Feb 2023 13:13:04 +0000 (14:13 +0100)
committerflisk <akkomadev.mvch71fq@flisk.xyz>
Sun, 26 Feb 2023 22:25:46 +0000 (23:25 +0100)
docs/docs/configuration/storing_remote_media.md

index ebea013395baab392f460622bf43f9b30a47ac99..1d60053ca0f22c88f8d0b35d33d8b3e1fcebf44f 100644 (file)
@@ -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;
     }
 ```