Hi Experts;
Thanks for looking at the question.
This is a continuation of question
http://www.experts-exchange.com/Software/Server_Software/Web_Servers/Apache/Q_22814884.html.
From my last question I could get access to the ASP.Net web pages through the mono module plugged into the Apache server using these addresses
http://127.0.0.1/demo/index.aspx or the intranet address of the box
http://192.168.123.104/demo/index.aspx but not through another box on the same internal network. The problem was that the iptables was blocking port 80 and was solved by EE Expert Fardev. After adding a line to the iptables I was able to get access to
http://192.168.123.104 from the network. But between the time I posted the question till the time I got access to the system from another box I was no longer being able to access
http://192.168.123.104/demo/index.aspx but could get a page to come up if I just went to the main site
http://192.168.123.104. Apache needs to load the module mod_mono.so so which I had in the httpd.conf file. I opened the file to make sure that all the lines I put in were correct only to find that they were not there any more. I then placed the following lines back into the httpd.conf file:
LoadModule mono_module modules/mod_mono.so
Alias /demo "/usr/lib/xsp/test"
MonoApplications "/usr/lib/xsp/test"
<Location /demo>
SetHandler mono
</Location>
I restarted the web server and now I am not getting web page not found but getting the message, "Service Temporarily Unavailable - The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later." Any one know what I might of messed up?
Thanks
Fernando
Start Free Trial