ASP.NET vNext not Apache

I've heard enough that the ASP.NET 5 will work not only in Windows environment but also Mac and Linux. I wanted to know if you have how to run applications ASP.NET 5 No Apache server. I researched a bit but found nothing recent talking about this particular server. In the current version of tests is it already possible to run in Apache?

If it is possible, would it be possible to indicate me a tutorial showing how to do this? Searching I found a Mono implementation of ASP.NET 2.0 and do ASP.NET MVC, but that's not what I'm looking for, it's about the ASP.NET 5 even.

Author: Maniero, 2014-12-25

2 answers

Microsoft has changed its stance with the entire platform. in this answer I talk about the new .NET Core that is not only open source but has as a principle run on any platform .

We are talking about Microsoft's implementation, the .NET itself, not to be confused with Mono which is another CLR implementation that has always been cross-platform but has always had some limitations.

One of the main features of ASP.NET Core is to have independence from host , that is, no longer have binding with IIS. Which complicated the implementation when it was not available and actually put other limitations since it is not always desirable to use IIS.

The New ASP.NET comes even a one host called Kestrel that can run without a full HTTP server. It can run in conjunction with Nginx according to that authoritative page. I've read the same elsewhere. There is already Documentation of how to use Apache .

Notes that the ASP.NET Core despite maintaining its base is practically another software.

It is worth remembering that Mono has been using, with limitations, the ASP.NET MVC from Microsoft same. It has not been reimplemented, at most adapted.

Microsoft is officially supporting Mono.

Is "certain" is that the .NET Framework full will not run . But the .NET Framework is less and less supported.

 6
Author: Maniero, 2020-09-16 13:14:34

As of the date of this answer, there is no vNext implementation for Apache yet.

Possibly this can only occur in 2015, and this if the Apache team wants to implement vNext for the server.

 0
Author: Leonel Sanches da Silva, 2014-12-25 04:35:00