logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 49229107e812d649e66e36e32e238db66b353b0f
parent cee1883b35b5453782bea1e34ff9cbf1bde52f7c
Author: Mark Felder <feld@FreeBSD.org>
Date:   Wed, 30 Sep 2020 12:32:54 -0500

Make it possible for Varnish logs to contain the true scheme used by clients
instead of always reporting http://

Diffstat:

Minstallation/pleroma.vcl4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/installation/pleroma.vcl b/installation/pleroma.vcl @@ -1,3 +1,4 @@ +# Recommended varnishncsa logging format: '%h %l %u %t "%m %{X-Forwarded-Proto}i://%{Host}i%U%q %H" %s %b "%{Referer}i" "%{User-agent}i"' vcl 4.1; import std; @@ -14,8 +15,11 @@ acl purge { sub vcl_recv { # Redirect HTTP to HTTPS if (std.port(server.ip) != 443) { + set req.http.X-Forwarded-Proto = "http"; set req.http.x-redir = "https://" + req.http.host + req.url; return (synth(750, "")); + } else { + set req.http.X-Forwarded-Proto = "https"; } # CHUNKED SUPPORT