如何在Tornado上设置WSS (Secure WebSockets) ?
在它们的docstring中,它们表示如下内容:
WebSocketHandler.get_websocket_scheme
可用于选择当HTTPRequest.protocol
设置不正确时,请使用ws://
或wss://
的url方案。
那么,我如何使用get_websocket_scheme
和/或HTTPRequest.protocol
让WSS在龙卷风上工作
我明白了:))
只需将此添加到您的应用程序:
http_server = tornado.httpserver.HTTPServer(application,ssl_options={
"certfile": "cert.cer",
"keyfile": "key.key",
})
这将解决问题。和普通HTTPS非常相似。