https://bugzilla.novell.com/show_bug.cgi?id=335583

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=335583#c6





--- Comment #6 from Rajko Horvat <[EMAIL PROTECTED]>  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 [EMAIL PROTECTED]

        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.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to