wss tornado connection issues

前端 未结 2 1900
梦毁少年i
梦毁少年i 2021-01-24 12:02

Tornado Server

ssl_options = {
        \"certfile\": \"server.crt\",
        \"keyfile\": \"server.key\"
}
application=Application()
server=tornado.httpserver.HT         


        
2条回答
  •  暖寄归人
    2021-01-24 12:27

    The tornado error message means that an http request is being sent to an https port. I was loading the javascript from an http url, changing that to https solved the problem.

提交回复
热议问题