diff --git a/ticketfrei/frontend.py b/ticketfrei/frontend.py index 52ee5e1..dbd68e7 100755 --- a/ticketfrei/frontend.py +++ b/ticketfrei/frontend.py @@ -275,6 +275,6 @@ application = bottle.default_app() bottle.install(SessionPlugin('/')) if __name__ == '__main__': - 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