cookie_secret works much better if we use it...
This commit is contained in:
parent
ed21f8e05a
commit
1eb8e9d076
1 changed files with 1 additions and 1 deletions
|
@ -1179,7 +1179,7 @@ def run():
|
||||||
],
|
],
|
||||||
template_path=os.path.join(os.path.dirname(__file__), "templates"),
|
template_path=os.path.join(os.path.dirname(__file__), "templates"),
|
||||||
static_path=os.path.join(os.path.dirname(__file__), "static"),
|
static_path=os.path.join(os.path.dirname(__file__), "static"),
|
||||||
cookie_secret='__COOKIE_SECRET__',
|
cookie_secret=cookie_secret,
|
||||||
login_url='/login',
|
login_url='/login',
|
||||||
debug=options.debug)
|
debug=options.debug)
|
||||||
http_server = tornado.httpserver.HTTPServer(application, ssl_options=ssl_options or None)
|
http_server = tornado.httpserver.HTTPServer(application, ssl_options=ssl_options or None)
|
||||||
|
|
Loading…
Reference in a new issue