slitaz-forge annotate 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
rev   line source
erjo@0 1 <VirtualHost *>
erjo@0 2 ServerAdmin webmaster@forum.slitaz.org
erjo@0 3 DocumentRoot /home/slitaz/www/forum
erjo@0 4 ServerName forum.slitaz.org
erjo@0 5 ErrorLog /home/slitaz/logs/error_log
erjo@0 6 CustomLog /home/slitaz/logs/access_log combined
erjo@0 7
erjo@0 8 RewriteEngine On
erjo@0 9
erjo@0 10 ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
erjo@0 11 <Directory "/usr/lib/cgi-bin">
erjo@0 12 AllowOverride None
erjo@0 13 Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
erjo@0 14 Order allow,deny
erjo@0 15 Allow from all
erjo@0 16 </Directory>
erjo@0 17
erjo@0 18
erjo@0 19 <Directory /home/slitaz/www/forum>
erjo@0 20 AllowOverride all
erjo@0 21 Options FollowSymLinks SymLinksIfOwnerMatch IncludesNoExec
erjo@0 22 DirectoryIndex index.php index.htm index.html
erjo@0 23 AddDefaultCharset iso8859-1
erjo@0 24
erjo@0 25
erjo@0 26 <Limit GET POST OPTIONS>
erjo@0 27 Order allow,deny
erjo@0 28 Allow from all
erjo@0 29 </Limit>
erjo@0 30 <LimitExcept GET POST OPTIONS>
erjo@0 31 Order deny,allow
erjo@0 32 Deny from all
erjo@0 33 </LimitExcept>
erjo@0 34 </Directory>
erjo@0 35 </VirtualHost>
erjo@0 36