I want to check on whether I am missing
I want to check on whether I am missing something obvious...
I have a worker bound to a domain like
api.something.com
. And then I set up SaaS hostnames for it. In order to do that, I set up a route */*
in order to match all of the requests.
Unfortunately, that means I cannot also have another SaaS worker at other-api.something.com
. (Because the */*
route is taken). Is that expected?
A way to make this work would be to write specific routes for SaaS (instead of */*
). But that would be ~ 1 route per custom hostname. Is that expected or advisable to write that many routes?
*/*
is a nice solution, but it only works once per Zone. Which means one SaaS worker per zone 😞1 Reply
I think my short term aim will be to just set up a route for every custom hostname 🤷♂️