JDalri
JDalri

Reputation: 388

C# website with Apache server

I've got this scenario: I want to build a website to a friend só he can manager his business. I want to do it like it is going to be online, using C# MVC. The thing is that only my friend will use the system, on localhost:/something...

My question is: if I put the files of my app on Apache, installed in my friends computer, will he be able to access the web site thru localhost:/mysite...?

Upvotes: 0

Views: 5889

Answers (2)

Sandeep Singh Rawat
Sandeep Singh Rawat

Reputation: 1647

I think for your use case ASP .net Core makes perfect sense. Have a look at the these articles and sample

https://docs.asp.net/en/latest/intro.html

https://github.com/aspnet/MusicStore

Easy to run/deploy and don't need IIS Install either.

Upvotes: 1

Mohammed Dawood Ansari
Mohammed Dawood Ansari

Reputation: 885

https://sourceforge.net/projects/mod-aspdotnet/

mod_aspdotnet is a loadable Apache 2 module for serving ASP.NET content using the Microsoft's ASP.NET hosting and .NET runtime within the Apache HTTP Server process. Non-Windows users should look at mono (mod_mono) for an alternate implementation.

Upvotes: 0

Related Questions