From 4c61b1ba9909a76d4dfcb3aa36186e6f7e7e8fca Mon Sep 17 00:00:00 2001 From: b3yond Date: Wed, 7 Nov 2018 01:57:47 +0100 Subject: [PATCH] setting host to 0.0.0.0 - it never worked with smth else anyway --- frontend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend.py b/frontend.py index 37144d3..894f6c5 100755 --- a/frontend.py +++ b/frontend.py @@ -260,6 +260,6 @@ bottle.install(SessionPlugin('/')) if __name__ == '__main__': # testing only - bottle.run(host=config["web"]["host"], port=config["web"]["port"]) + bottle.run(host="0.0.0.0", port=config["web"]["port"]) else: application.catchall = False