How to route request (connect) a pubic app service to a private app service via application gateway in azure
I have a simple webapplication with an Angular frontend and Javascript backend component.
I deployed the backend as azure app services, made it private and used an application gateway to route requests to the backend API's. So whenever i access the application gateway public ip, i can reach the backend api's
What I am trying to achieve is :
I deployed my frontend (which is basically displaying a table with names and ages from backend APIs) also as a public app service. Now i want my frontend to access the backend app service via the application gateway so that the frontend UI displays the data (tables) from the backend.
How should can i achieve this??