From fd94211ff7f5f4d010a2c7804282faa22a5bdb09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauri=20V=C3=B5sandi?= Date: Sun, 13 Jun 2021 14:11:59 +0300 Subject: [PATCH] Listen on all interfaces --- wildduck_exporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wildduck_exporter.py b/wildduck_exporter.py index 4c3cb7d..3fc31d7 100755 --- a/wildduck_exporter.py +++ b/wildduck_exporter.py @@ -57,4 +57,4 @@ async def view_export(request): return response.stream(streaming_fn, content_type="text/plain") -app.run(port=3001) +app.run(host="0.0.0.0", port=3001)