Host two asp.net core applications on the same Ip and port (localhost:8080 for example)

893 Views Asked by At

I have two projects which are ASP.NET CORE servers (1 BackEnd and 1 Identity Server) I would like the BackEnd to serve both apps on the same port and keep two separately runable projects.

Project Structure

How can I make this possible ? The purpose is to open only one port to the client.

Thanks in advance

2

There are 2 best solutions below

0
On

In IIS, you need to set a binding for each web application. Then each web application will respond to requests for the corresponding binding.

3
On

I have two projects which are ASP.NET CORE servers (1 BackEnd and 1 Identity Server) I would like the BackEnd to serve both apps on the same port and keep two separately runable projects.

If your App(s) are hosted on IIS, you can try to deploy your BackEnd service and Identity Server in two separate applications under same web site as below.

enter image description here

Please note that the application's path would become part of the site's URL if we create an application in IIS. To make your Apps can work well, you may need to modify some code to include application's path in URL while you configure Identity Server to protect your BackEnd service.