about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--examples/public-inbox.psgi3
-rw-r--r--public-inbox-httpd1
2 files changed, 3 insertions, 1 deletions
diff --git a/examples/public-inbox.psgi b/examples/public-inbox.psgi
index e3e42152..acceba3d 100644
--- a/examples/public-inbox.psgi
+++ b/examples/public-inbox.psgi
@@ -23,7 +23,8 @@ builder {
         # properly when running behind a reverse proxy server which
         # sets X-Forwarded-For and X-Forwarded-Proto request headers.
         # See Plack::Middleware::ReverseProxy documentation for details
-        # enable 'ReverseProxy';
+        enable 'ReverseProxy';
+
         enable 'Head';
         sub { $www->call(@_) };
 }
diff --git a/public-inbox-httpd b/public-inbox-httpd
index b871e3de..6109af01 100644
--- a/public-inbox-httpd
+++ b/public-inbox-httpd
@@ -35,6 +35,7 @@ my $refresh = sub {
                                         enable 'Deflater',
                                                 content_type => $deflate_types
                                 }
+                                enable 'ReverseProxy';
                                 enable 'Head';
                                 sub { $www->call(@_) };
                         };