about summary refs log tree commit homepage
path: root/script
diff options
context:
space:
mode:
Diffstat (limited to 'script')
-rwxr-xr-xscript/public-inbox-httpd9
-rwxr-xr-xscript/public-inbox.cgi7
2 files changed, 0 insertions, 16 deletions
diff --git a/script/public-inbox-httpd b/script/public-inbox-httpd
index 09da505e..b8159f3a 100755
--- a/script/public-inbox-httpd
+++ b/script/public-inbox-httpd
@@ -27,15 +27,6 @@ my $refresh = sub {
                 my $www = PublicInbox::WWW->new;
                 $www->preload;
                 $app = builder {
-                        eval {
-                                enable 'Deflater',
-                                        content_type => [ qw(
-                                                text/html
-                                                text/plain
-                                                application/atom+xml
-                                                )]
-                        };
-
                         eval { enable 'ReverseProxy' };
                         $@ and warn
 "Plack::Middleware::ReverseProxy missing,\n",
diff --git a/script/public-inbox.cgi b/script/public-inbox.cgi
index c766483a..42ab17c9 100755
--- a/script/public-inbox.cgi
+++ b/script/public-inbox.cgi
@@ -13,14 +13,7 @@ BEGIN {
         PublicInbox::WWW->preload if $ENV{MOD_PERL};
 }
 my $www = PublicInbox::WWW->new;
-my $have_deflater = eval { require Plack::Middleware::Deflater; 1 };
 my $app = builder {
-        if ($have_deflater) {
-                enable 'Deflater',
-                        content_type => [ 'text/html', 'text/plain',
-                                        'application/atom+xml' ];
-        }
-
         # Enable to ensure redirects and Atom feed URLs are generated
         # properly when running behind a reverse proxy server which
         # sets the X-Forwarded-Proto request header.