From f2516db73f96057891fb6a69c0351c2fac2676ef Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 25 Apr 2018 13:04:52 +0200 Subject: [PATCH] webapp: Don't compress output This should be done by nginx or any other reverse proxy in front of the webapp Signed-off-by: Michael Tremer --- webapp/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/webapp/__init__.py b/webapp/__init__.py index cce51399..74fa5b05 100644 --- a/webapp/__init__.py +++ b/webapp/__init__.py @@ -24,7 +24,6 @@ class Application(tornado.web.Application): settings = dict( cookie_secret = "aXBmaXJlY29va2llc2VjcmV0Cg==", debug = options.debug, - gzip = True, login_url = "/login", template_path = os.path.join(BASEDIR, "templates"), ui_methods = { -- 2.39.5