fixed a bug with the docker deployment

refactoring
b3yond 2019-06-09 11:56:10 +02:00
parent 7ef8c3e197
commit 833be826e9
1 changed files with 1 additions and 1 deletions

View File

@ -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