瀏覽代碼

run in HTTP if no certficate is found

Davide Alberani 9 年之前
父節點
當前提交
84ddf76543
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      eventman_server.py

+ 1 - 1
eventman_server.py

@@ -543,7 +543,7 @@ def run():
     ssl_options = {}
     if os.path.isfile(options.ssl_key) and os.path.isfile(options.ssl_cert):
         ssl_options = dict(certfile=options.ssl_cert, keyfile=options.ssl_key)
-    http_server = tornado.httpserver.HTTPServer(application, ssl_options=ssl_options)
+    http_server = tornado.httpserver.HTTPServer(application, ssl_options=ssl_options or None)
     http_server.listen(options.port)
     tornado.ioloop.IOLoop.instance().start()