I'm trying to create a container (parent) web app loading other web applications inside its body. Each web app is an ASP.Net Core project, using its own Kestrel web server. With old ASP.Net, I would use virtual directories to have them under same the same site, avoiding the concern to handle cross domain CORS, but I can't find a way to do it with asp.net core modules.
Container (localhost)
- App1 (localhost/App1)
- App2 (localhost/App2)
- App3 (localhost/App3)
Is there a way to handle this scenario?