forked from ticketfrei/ticketfrei
setting host to 0.0.0.0 - it never worked with smth else anyway
This commit is contained in:
parent
a534bc4e06
commit
c6ce423841
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue