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
```json
"routes": [
{
"pattern": "*.webhook.crafim.com/*",
"zone_name": "crafim.com",
}
]
```json
"routes": [
{
"pattern": "*.webhook.crafim.com/*",
"zone_name": "crafim.com",
}
]
Any ideas what could be wrong? I've checked the Cloudflare dashboard and the route appears to be created correctly.
9 Replies
Rahul gangotri
Rahul gangotriOP2w ago
Can someone please help me on this?
Isaac McFadyen
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.
Rahul gangotri
Rahul gangotriOP2w ago
So can i have randomhash.domain.com?
Isaac McFadyen
Yes because that's one level deep.
Rahul gangotri
Rahul gangotriOP2w ago
Oh ok, can it be documented ?
Isaac McFadyen
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
Rahul gangotri
Rahul gangotriOP2w ago
And will it require anything more than worker paid account?
Isaac McFadyen
It shouldn't, no.
Rahul gangotri
Rahul gangotriOP2w ago
Ok thanks

Did you find this page helpful?