From 3622c085c1ba46df2c3460d3922ddbaa3178bb99 Mon Sep 17 00:00:00 2001 From: b3yond Date: Sat, 8 Sep 2018 16:31:02 +0200 Subject: [PATCH] host is configurable now --- frontend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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