Subdomain Routes With Multiple Workers
I have two workers say
account-worker
user-worker
Both running off a subdomain
my-api.my-domain.com
In each worker I have set up the route to accept requests at:
my-api.my-domain.com/accounts*
for the account worker
my-api.my-domain.com/users*
for the users worker
Works locally fine when running and testing but there not accepting requests when deployed. Am I missing something?4 Replies
Do you have a DNS record for my-api.my-domain.com?
What would I point that two as I have multiple workers?
Just create a single AAAA record for the subdomain, and point it toward 100::
Thank you so much lol
Your the best ha