How to Run my Asp.net Core application on Apache server on Windows? How to Run my Asp.net Core application on Apache server on Windows? apache apache

How to Run my Asp.net Core application on Apache server on Windows?


There is no Apache mod to run ASP.NET Core application, however you can setup Apache or Nginx to be a reverse proxy for ASP.NET Core application running on Kestrel web server. This is actually what Microsoft recommends to do in production environment primarily for security reasons. For more details take a look at this article. To see how exactly configure Apache reverse proxy take a look here.