From 3eed34c7102e36db61b6b8048c9cc02b2275f741 Mon Sep 17 00:00:00 2001
From: Ruud <ruud@crashdummy.nl>
Date: Fri, 22 Feb 2013 22:56:08 +0100
Subject: [PATCH] Gzip Tornado response

---
 couchpotato/runner.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/couchpotato/runner.py b/couchpotato/runner.py
index 66a524cc..de538485 100644
--- a/couchpotato/runner.py
+++ b/couchpotato/runner.py
@@ -245,7 +245,8 @@ def runCouchPotato(options, base_path, args, data_dir = None, log_dir = None, En
         (r'.*', FallbackHandler, dict(fallback = web_container)),
     ],
         log_function = lambda x : None,
-        debug = config['use_reloader']
+        debug = config['use_reloader'],
+        gzip = True,
     )
 
     if config['ssl_cert'] and config['ssl_key']:
-- 
GitLab