Worker route not working
Hey, I've created a worker and want to have dynamic subdomain based routing like - .app.domain.com. I did everything and it's working in local, but in live it's created the route and all but it's not able to be browsed.
```ts
import { Hono } from 'hono'
const app = new Hono({
getPath: (req) => req.url.replace(/^https?:/([^?]+).$/, '$1'),
})
app.get('/', (c) => {
return c.text('hello world')
})
app.get('/:name/', (c) => {
return c.text(
hello ${c.req.param('name')}
)
})
app.get('/:name/user', (c) => {
return c.text(hello ${c.req.param('name')} from user
)
})
export default app
Any ideas what could be wrong? I've checked the Cloudflare dashboard and the route appears to be created correctly.9 Replies
Can someone please help me on this?
The free default Cloudflare certificate doesn't cover subdomains two levels deep (which you have here).
You'll need to use ACM (paid) for this use-case.
So can i have randomhash.domain.com?
Yes because that's one level deep.
Oh ok, can it be documented ?
It is, but under the SSL docs because it's not Worker-specific: https://developers.cloudflare.com/ssl/edge-certificates/universal-ssl/limitations/#full-setup
And will it require anything more than worker paid account?
It shouldn't, no.
Ok thanks