Apache 2.2 and campsite
Ondra Koutek <[email protected]> Tue, 12 Dec 2006 10:04:15 +0100
| Newsgroups | gmane.comp.cms.campsite.general |
|---|---|
| Organization | TOL |
| Message-ID | <[email protected]> |
Hi all,
I am unsure if any of you tried to use campsite on Apache 2.2, but it
does not work, due to default campsite Apache config. The problem is,
that Apache 2.2 does not have mod_access, but has the access ability
itself. Therefore in campsite config you need to comment out the checks
for mod_access module:
<Directory /usr/local/campsite/www/campsite/html>
Options -Indexes FollowSymLinks MultiViews
AllowOverride All
# <IfModule mod_access.c>
Order allow,deny
Allow from all
# </IfModule>
</Directory>
<Directory /usr/local/campsite/www/campsite/cgi-bin>
AllowOverride All
Options ExecCGI
# <IfModule mod_access.c>
Order allow,deny
Allow from all
# </IfModule>
</Directory>
this small tweak will help.
I know most of you are skilled enough to find this yourselves, but
knowing this might help someone.
Ondra