Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternatives to IIS for Windows to run ASP.NET

Are there any alternatives to IIS for Windows to run ASP.NET?

CassiniEx seems pretty old?

like image 562
iasksillyquestions Avatar asked Jan 13 '09 22:01

iasksillyquestions


People also ask

Can ASP.NET run without IIS?

Is it possible to self-host an ASP.NET Core Application without IIS? Yes. In fact, all ASP.NET Core applications are self-hosted. Even in production, IIS/Nginx/Apache are a reverse proxy for the self-hosted application.

Which service can host an ASP.NET application?

An ASP.NET Core app can be hosted on Windows as a Windows Service without using IIS. When hosted as a Windows Service, the app automatically starts after server reboots.


2 Answers

You can also use the Abyss Web Server, which is ASP.NET compatible.

like image 40
Bjørn Otto Vasbotten Avatar answered Sep 19 '22 18:09

Bjørn Otto Vasbotten


There is UltiDev Cassini which is a "free, light-weight and redistributable web server that can host ASP.NET 3.5, 3.0, 2.0 and 1.1 applications and static HTML sites". (It is based on the original Cassini web server).

Other than that, there is the development web server, which comes with Visual Studio. But as far as I know, this can only be used during development/from within Visual Studio.

p.s. UtilDev PRO supports asp.net 4.0.

like image 101
M4N Avatar answered Sep 20 '22 18:09

M4N