This commit is contained in:
Chris Wanstrath 2025-09-23 22:04:45 -07:00
parent f863544adf
commit 5948263c6d

View File

@ -73,7 +73,7 @@ app.get("*", async c => {
const connection = connections[subdomain] const connection = connections[subdomain]
if (!connection) if (!connection)
return c.text("No tunnel", 502) return c.text("Bad Gateway", 502)
const id = randomID() const id = randomID()
const headers = Object.fromEntries(c.req.raw.headers) const headers = Object.fromEntries(c.req.raw.headers)