diff --git a/superTornado.py b/superTornado.py index 67741ce..4a65d11 100644 --- a/superTornado.py +++ b/superTornado.py @@ -205,11 +205,8 @@ if __name__ == "__main__": try : log.printL("->Server Start ...",lvl.INFO) tornado.options.parse_command_line() - http_server = tornado.httpserver.HTTPServer(application,ssl_options={ - "certfile": os.path.join("/ssl", "server.crt"), - "keyfile": os.path.join("/ssl", "key.crt"), - }) - http_server.listen(443) + http_server = tornado.httpserver.HTTPServer(application) + http_server.listen(portServ) log.printL("->Server Start Successfully !",lvl.SUCCESS) tornado.ioloop.IOLoop.instance().start() except Exception, e :