From: Michael Tremer Date: Wed, 25 Apr 2018 11:06:10 +0000 (+0200) Subject: Drop cookie secret X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=98768e99ed1189c8cacc7744;p=ipfire.org.git Drop cookie secret This is quite pointless with a session ID only Signed-off-by: Michael Tremer --- diff --git a/webapp/__init__.py b/webapp/__init__.py index 74fa5b05..69468f2e 100644 --- a/webapp/__init__.py +++ b/webapp/__init__.py @@ -22,7 +22,6 @@ class Application(tornado.web.Application): self.__backend = None settings = dict( - cookie_secret = "aXBmaXJlY29va2llc2VjcmV0Cg==", debug = options.debug, login_url = "/login", template_path = os.path.join(BASEDIR, "templates"),