added apache configuration file

This commit is contained in:
Steffen Vogel 2010-10-06 00:46:46 +02:00
parent 6f2322c800
commit 85846beb7b

36
misc/apache-vhost.conf Normal file
View file

@ -0,0 +1,36 @@
<VirtualHost *:80>
ServerAdmin webmaster@0l.de
ServerName d.0l.de
ServerAlias d.eta.li *.d.eta.li *.0l.de members.dyndns.org
DocumentRoot /var/www/nulll/sddns/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/nulll/sddns/>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
allow from all
</Directory>
Alias /nic/update /var/www/nulll/sddns/update.php
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_sddns.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access_sddns.log combined
ServerSignature On
</VirtualHost>