setting host to 0.0.0.0 - it never worked with smth else anyway

master
b3yond 2018-11-07 01:57:47 +01:00
parent a534bc4e06
commit c6ce423841
1 changed files with 1 additions and 1 deletions

View File

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