Reputation: 1073
I need to host my .Net Core 2.1
application on Windows
with Apache
. Do you have any tutorials? I found many tutorials to host on Linux
but none on Windows
.
Upvotes: 2
Views: 5807
Reputation: 6292
Apache does not provide official package for windows but their are 3rd party binary distributions available, some are:
You can see this Hosting article where ASP.NET Core hosted on Apache on Windows with XAMPP.
Upvotes: 1
Reputation: 1422
You cannot host a .NET Core application on Apache on Windows. What you can do is to use Kestrel with a reverse proxy such as describe in this article.
Upvotes: 1