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

stable2
b3yond 2018-11-07 01:57:47 +01:00
parent 5a4763366b
commit 4c61b1ba99
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