sddns/misc/apache-vhost.conf

58 lines
1.2 KiB
Text
Raw Permalink Normal View History

2010-10-06 00:46:46 +02:00
<VirtualHost *:80>
2013-04-23 19:14:13 +02:00
ServerAdmin webmaster@0l.de
ServerName d.0l.de
ServerAlias *.0l.de
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>
ErrorLog ${APACHE_LOG_DIR}/error_sddns.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access_sddns.log combined
ServerSignature On
</VirtualHost>
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin webmaster@0l.de
ServerName d.0l.de
ServerAlias *.0l.de
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>
ErrorLog ${APACHE_LOG_DIR}/error_sddns.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access_sddns.log combined
ServerSignature On
Include ssl_virtual.conf
2010-10-06 00:46:46 +02:00
</VirtualHost>
2013-04-23 19:14:13 +02:00
</IfModule>