[Mono-list] Mod_mono - "Service temporarily unavailable"

Carlos Ble carlosble at shidix.com
Sat Dec 17 04:50:53 EST 2005


El vie, 16-12-2005 a las 22:44 -0700, Tom Opgenorth escribió:
> Well, I've got to admit, I'm confused and frustrated.  I've had
> mod_mono working on Apache FC4/2.0.54 before, but just can't seem to
> get it working now.  I just did a yum update, and update to mod_mono
> 1.1.11, and still nothing.  Does anybody have some
> references/URLs/FAQs/HOWTO's to help a guy out?
> 
> TIA.

This configuration works for me (Debian):

/etc/apache2/mods-enabled/mod_mono.load:
LoadModule mono_module /usr/lib/apache2/modules/mod_mono.so

/etc/apache2/sites-enabled/default:
NameVirtualHost *
<VirtualHost *>
Alias /test "/path/projectdir"
AddMonoApplications default "/test:/path/projectdir"
<Directory "/path/projectdir">
  AddHandler mono .rails .aspx .ashx .asmx .ascx .asax .config .ascx
  SetHandler mono
  Options Indexes MultiViews FollowSymLinks
  AllowOverride None
  Order deny,allow
  Deny from all
  Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>

binary Apache 2.0.55 + mod_mono 1.1.10-2 built from source.

Good luck !



More information about the Mono-list mailing list