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?
Was this page helpful?