Fix nginx caching issues
authorMark Felder <feld@FreeBSD.org>
Thu, 10 Jan 2019 21:29:05 +0000 (21:29 +0000)
committerMark Felder <feld@FreeBSD.org>
Thu, 10 Jan 2019 21:29:05 +0000 (21:29 +0000)
Nginx is currently not caching data because proxy_buffering needs to be
enabled for caching to work at all, and we are receiving a Cache-Control
header from Pleroma that states "max-age=0, private, must-revalidate"

Even disregarding the Cache-Control header that should actually be set
to "public, max-age=1209600" as defined in the reverse_proxy code, we
don't want to obey this header at all as it overrides our Nginx caching
rules.

installation/pleroma.nginx

index 46b84fb508a7d26c59d698dba8f106897b838d66..a24bb0e61fe7bf4dff98efb86f9de978435ac828 100644 (file)
@@ -79,8 +79,10 @@ server {
         proxy_cache_valid  200 206 301 304 1h;
         proxy_cache_lock on;
         proxy_ignore_client_abort on;
-        proxy_buffering off;
+        proxy_buffering on;
         chunked_transfer_encoding on;
+        proxy_ignore_headers Cache-Control;
+        proxy_hide_header Cache-Control;
         proxy_pass http://localhost:4000;
     }
 }