worker route/domain for a cloudflare for plateform user worker
is that possible to bind a custom domain name to a User Worker of my cloudflare for plateform ?
1 Reply
Hi @Kysan my understanding is that "user" workers live in their own namespace, and can only be invoked through a dispatcher.
To route requests on a custom domain to a user worker, the custom domain should be configured to point to your dispatch worker, which extracts the name from the request url and calls
dispatcher.get(<name>)
.