Make it possible for Varnish logs to contain the true scheme used by clients
authorMark Felder <feld@FreeBSD.org>
Wed, 30 Sep 2020 17:32:54 +0000 (12:32 -0500)
committerMark Felder <feld@FreeBSD.org>
Wed, 30 Sep 2020 17:32:54 +0000 (12:32 -0500)
instead of always reporting http://

installation/pleroma.vcl

index 154747aa60b646df7658688ce7bd436b6b92de11..57b6d17b34a14a809d676da2c4c354679da15e40 100644 (file)
@@ -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