mirror of
https://github.com/certbot/certbot.git
synced 2026-04-15 22:20:28 -04:00
Part of #7593. * Refactor tests out of packaged module for apache plugin * Exclude pycache and .py[cod] * Change tests path in tox.ini
9 lines
212 B
Text
9 lines
212 B
Text
<VirtualHost *:80 [::]:80>
|
|
DocumentRoot /tmp
|
|
ServerName example.com
|
|
ServerAlias www.example.com
|
|
CustomLog ${APACHE_LOG_DIR}/example.log combined
|
|
<Directory "/tmp">
|
|
AllowOverride All
|
|
</Directory>
|
|
</VirtualHost>
|