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

This commit is contained in:
b3yond 2018-11-07 01:57:47 +01:00
parent a534bc4e06
commit c6ce423841

View file

@ -260,6 +260,6 @@ bottle.install(SessionPlugin('/'))
if __name__ == '__main__': if __name__ == '__main__':
# testing only # testing only
bottle.run(host=config["web"]["host"], port=config["web"]["port"]) bottle.run(host="0.0.0.0", port=config["web"]["port"])
else: else:
application.catchall = False application.catchall = False