From d2f37ec192d877cdedc7e5641dd1edc3dc0d0dbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauri=20V=C3=B5sandi?= Date: Sun, 13 Feb 2022 13:18:00 +0200 Subject: [PATCH] Listen on all interfaces --- camdetect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/camdetect.py b/camdetect.py index ac71edd..dbc755a 100755 --- a/camdetect.py +++ b/camdetect.py @@ -243,6 +243,6 @@ async def setup_db(app, loop): monitor(app).expose_endpoint() try: - app.run(port=5000) + app.run(host="0.0.0.0", port=5000) except KeyboardInterrupt: asyncio.get_event_loop().close()