Can I host ASP.NET on an Apache server?

I heard about problems with configuring IIS. In a windows window, can I just uninstall the ASP.NET application on the Apache server and make it work? Or are there other server alternatives? I am relatively new to web server concepts. I heard suggestions for the server in mono, but this does not seem practical, using mono in the window window, I could use the Linux box with mono, which would not surprise me if it worked better than the Windows solution, but for arguments this question directed to window window.

thanks

+4
source share
3 answers

Try mod_aspdotnet .

mod_aspdotnet is an Apache 2 downloadable module for serving ASP.NET content using the Microsoft ASP.NET host and .NET environment in the Apache HTTP server process.

+3
source

I believe mod_mono you can use.

+2
source

If you are a Windows user, you can agree with mod_aspdotnet

and if you are a Linux user, you can use mod_mono.

+2
source

Source: https://habr.com/ru/post/1313985/


All Articles