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