17 lines
546 B
Plaintext
17 lines
546 B
Plaintext
# Temporärer HTTP-VHost für die erstmalige Let's-Encrypt-Ausstellung.
|
|
# Diese Datei vor dem Zertifikat als tt-verein.de.conf aktivieren.
|
|
<VirtualHost *:80>
|
|
ServerName tt-verein.de
|
|
ServerAlias www.tt-verein.de
|
|
|
|
DocumentRoot /var/www/tt-tagebuch.de
|
|
<Directory /var/www/tt-tagebuch.de>
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/tt-verein.de_error.log
|
|
CustomLog ${APACHE_LOG_DIR}/tt-verein.de_access.log combined
|
|
</VirtualHost>
|