Battling to get this to work. I have an app composed of two services - frontend in Angular, backend in Node.
dispatch:
- url: "<frontend-app>-dot-apt-aleph-767.appspot.com/"
service: <frontend-app>
- url: "<frontend-app>-dot-apt-aleph-767.appspot.com/backend/"
service: <backend-app>
This is the output from gcloud app describe
:
dispatchRules:
- domain: <frontend-app>-dot-apt-aleph-767.appspot.com
path: /
service: <frontend-app>
- domain: <frontend-app>-dot-apt-aleph-767.appspot.com
path: /backend/*
service: <frontend-app>
When I navigate to the url for the frontend app, it works as expected. However, I get a 404 when I go to <frontend-app>-dot-apt-aleph-767.appspot.com/backend
. It doesn't make sense because when I navigate straight to the backend URL, it works as expected.
plzhalp.