From d7268587845adfa8d2189f91b026d774c2cfb0d6 Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Fri, 3 Jan 2020 20:44:30 -0500 Subject: [PATCH] bound port to all IPs --- chainlink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chainlink.py b/chainlink.py index e49f722..c7f43c7 100755 --- a/chainlink.py +++ b/chainlink.py @@ -63,4 +63,4 @@ def redirectDomain(domain, action=None): return json2html.json2html.convert(json = body) if __name__ == "__main__": - run(app, host='localhost', port='5000', reloader=True) + run(app, host='0.0.0.0', port='5000', reloader=True)