Team,
If we host 2 small api within same app service and provide their virtual path like this

Then, is it possible to enable calls between them through urls like this
http:// 127.0.0.1/site1 or http://localhost/site1
I can use the complete url but in that case unnecessary hops of api gateway or routers will come in the middle.
In my case, the request will only come to service sitting at wwwroot along with its token. Now, this service will redirect the call to site1(test1) service for validation process because site1 service manages token creation and validation process.
Can anyone let me know if it is possible.
Regards,
Tanul