ASP.NET MVC on linux (mod_Mono, apache)

1

I'm trying to run my ASP.NET MVC application on a CentOS 7 system. After installing the mono and verifying that I can run using XSP, I'm having difficulty configuring mod_mono in apache. You are currently giving the following error: Service Unavaliable.

Here are the settings used in httpd.conf:

LoadModule mono_module /etc/httpd/modules/mod_mono.so
Include "/etc/httpd/conf.d/mod_mono.conf"


MonoUnixSocket /tmp/.mod_mono_server
MonoServerPath /usr/bin/mod-mono-server4
MonoAutoApplication enabled
SetHandler mono
MonoApplications "/:/var/www/html"
MonoApplicationsConfigDir  /etc/mono
MonoPath /usr/lib/mono/4.5:/usr/lib:/usr/lib/mono/4.5



<Location /mono>
    SetHandler mono-ctrl
    Order deny,allow
    Deny from all
    Allow from localhost
</Location>
    
asked by anonymous 21.02.2017 / 15:06

0 answers