slitaz-forge view forum/system-config/apache/forum.slitaz.org.conf @ rev 0

Adding system and vanilla config files for the forum
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Dec 22 10:25:56 2010 +0100 (2010-12-22)
parents
children
line source
1 <VirtualHost *>
2 ServerAdmin webmaster@forum.slitaz.org
3 DocumentRoot /home/slitaz/www/forum
4 ServerName forum.slitaz.org
5 ErrorLog /home/slitaz/logs/error_log
6 CustomLog /home/slitaz/logs/access_log combined
8 RewriteEngine On
10 ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
11 <Directory "/usr/lib/cgi-bin">
12 AllowOverride None
13 Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
14 Order allow,deny
15 Allow from all
16 </Directory>
19 <Directory /home/slitaz/www/forum>
20 AllowOverride all
21 Options FollowSymLinks SymLinksIfOwnerMatch IncludesNoExec
22 DirectoryIndex index.php index.htm index.html
23 AddDefaultCharset iso8859-1
26 <Limit GET POST OPTIONS>
27 Order allow,deny
28 Allow from all
29 </Limit>
30 <LimitExcept GET POST OPTIONS>
31 Order deny,allow
32 Deny from all
33 </LimitExcept>
34 </Directory>
35 </VirtualHost>