fixed listen ip address

This commit is contained in:
2019-09-07 15:20:38 +02:00
parent fec87435bd
commit 11e0bfb055

View File

@@ -49,7 +49,7 @@ async def health_check():
if __name__ == '__main__':
handler = CustomHandler()
controller = Controller(handler, hostname='127.0.0.1', port=10025)
controller = Controller(handler, hostname='0.0.0.0', port=10025)
# Run the event loop in a separate thread.
controller.start()
# Wait for the user to press Return.