derodevil
derodevil

Reputation: 1073

Host ASP.NET Core on Windows with Apache

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

Answers (2)

yogihosting
yogihosting

Reputation: 6292

Apache does not provide official package for windows but their are 3rd party binary distributions available, some are:

  1. XAMPP
  2. Apache Lounge
  3. Bitnami WAMP Stack
  4. WampServer

You can see this Hosting article where ASP.NET Core hosted on Apache on Windows with XAMPP.

Upvotes: 1

Skrface
Skrface

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

Related Questions