diff --git a/frontend.py b/frontend.py index 6133ba1..82eebf8 100755 --- a/frontend.py +++ b/frontend.py @@ -264,6 +264,6 @@ bottle.install(SessionPlugin('/')) if __name__ == '__main__': # testing only - bottle.run(host='localhost', port=config["web"]["port"]) + bottle.run(host=config["web"]["host"], port=config["web"]["port"]) else: application.catchall = False