diff --git a/server.py b/server.py index 4bade04..61d5ebc 100644 --- a/server.py +++ b/server.py @@ -18,4 +18,6 @@ def relay(url): return render_template("gem.html", code=parsed, title=title) # Run the Hypercorn ASGI server -asyncio.run(serve(app, Config())) \ No newline at end of file +conf = Config() +conf.bind = "0.0.0.0:2009" +asyncio.run(serve(app, conf)) \ No newline at end of file