From: Dominik V. Salonen Date: Mon, 28 May 2018 10:36:27 +0000 (+0000) Subject: Update pleroma.nginx X-Git-Url: http://git.squeep.com/?a=commitdiff_plain;h=a6fd9c4b0083889d327b0954febd7bb233dfccb1;p=akkoma Update pleroma.nginx proxy_ignore_client_abort will continue to fetch from upstream even if a client aborts the connection. This is highly recommended when cache is being used. If a client leaves/refreshes the page while a user's avatar or some other media is halfway loaded, the cached copy might in some cases be broken. Leaving future requests to the same URL broken until cache expires. --- diff --git a/installation/pleroma.nginx b/installation/pleroma.nginx index b6ca30cc9..42323dd95 100644 --- a/installation/pleroma.nginx +++ b/installation/pleroma.nginx @@ -83,6 +83,7 @@ server { location /proxy { proxy_cache pleroma_media_cache; proxy_cache_lock on; + proxy_ignore_client_abort on; proxy_pass http://localhost:4000; } }