Browse Source

run in HTTP if no certficate is found

Davide Alberani 9 years ago
parent
commit
84ddf76543
1 changed files with 1 additions and 1 deletions
  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()