added apache configuration file
This commit is contained in:
parent
6f2322c800
commit
85846beb7b
1 changed files with 36 additions and 0 deletions
36
misc/apache-vhost.conf
Normal file
36
misc/apache-vhost.conf
Normal 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>
|
Loading…
Add table
Reference in a new issue