sddns/misc/apache-vhost.conf

57 lines
1.2 KiB
Text

<VirtualHost *:80>
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
</VirtualHost>
</IfModule>