diff --git a/webapp.py b/webapp.py index a87c78a..39e5619 100644 --- a/webapp.py +++ b/webapp.py @@ -232,7 +232,7 @@ async def startWebService(): PORT = 80 # Port to listen on print(HOST,PORT) - wsgiServer = server.WSGIServer(80, application=web_app) + wsgiServer = server.WSGIServer(PORT, application=web_app) print(f"open this IP in your browser: http://{HOST}:{PORT}/") @@ -240,4 +240,4 @@ async def startWebService(): wsgiServer.start() while True: wsgiServer.update_poll() - await asyncio.sleep(0) \ No newline at end of file + await asyncio.sleep(0)