最好的选择是使用代理前端服务器,如 nginx、haproxy 或 apache。使用 ssl 配置 tornado 非常慢,它会减慢 tornado 的速度,直到它完全没有响应,只需最少的访问。我到处寻找直接使用龙卷风在 ssl 流量中获得不错的速度,但没有找到任何东西。此外,使用前端服务器也不错。
但是通过使用 apache f.ex。作为前端代理,我接近原生非 ssl 速度。
但是用 ssl 配置 tornado 很简单:
def main():
handlers = [
(r"/", HomeHandler),
]
settings = dict(
blog_title=u"Tornado Blog",
template_path=os.path.join(os.path.dirname(__file__), "templates"),
static_path=os.path.join(os.path.dirname(__file__), "static"),
cookie_secret="__TODO:_GENERATE_YOUR_OWN_RANDOM_VALUE_HERE__",
debug=True,
certfile = os.path.join("certs/server.crt"),
keyfile = os.path.join("certs/server.key"),
ssl_options = {
"certfile" : os.path.join("certs/server.crt"),
"keyfile" : os.path.join("certs/server.key"),
},
)
tornado.options.parse_command_line()
http_server = tornado.httpserver.HTTPServer(Application())
http_server.listen(options.port)
tornado.ioloop.IOLoop.instance().start()
main()