[Mono-bugs] [Bug 335583] mod_mono and xsp have different versions.
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Sat Jan 19 05:30:24 EST 2008
https://bugzilla.novell.com/show_bug.cgi?id=335583
User rajko.horvat at inet.hr added comment
https://bugzilla.novell.com/show_bug.cgi?id=335583#c6
--- Comment #6 from Rajko Horvat <rajko.horvat at inet.hr> 2008-01-19 03:30:23 MST ---
I will post this here as many others are possibly facing this problem.
It seems to me that new Apache differently processes configuration files than
older version. And what I did was to move all my configuration of ASP.NET
application inside VirtualHost tag. The other configuration files I didn't
touch (they are defaults). My Apache configuration is now as follows:
ServerName servername
MonoApplications "/samples:/var/www/samples"
MonoApplications "/:/var/www/Testing"
<VirtualHost servername>
ServerAdmin webmaster at server.net
DocumentRoot /var/www/Testing/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/Testing/>
SetHandler mono
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order deny,allow
allow from all
</Directory>
Alias /samples "/var/www/samples/"
<Directory /var/www/samples/>
SetHandler mono
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order deny,allow
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
</VirtualHost>
I hope this helps.
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the mono-bugs
mailing list