Update server.py
Some checks failed
Test web app / check (push) Failing after 34s

This commit is contained in:
Nova Cat 2025-01-18 20:05:09 -08:00
parent 5d6da9c44c
commit 482b7b7438

View file

@ -264,5 +264,5 @@ def relay():
# Run the Hypercorn ASGI server # Run the Hypercorn ASGI server
conf = Config() conf = Config()
conf.bind = ":2009" conf.bind = ["0.0.0.0:2009", "[::]:2009"]
asyncio.run(serve(app, conf)) asyncio.run(serve(app, conf))