15 lines
368 B
Django/Jinja
15 lines
368 B
Django/Jinja
<VirtualHost *:80>
|
|
ServerName {{ site_name }}
|
|
DocumentRoot {{ site_root }}
|
|
|
|
<Directory {{ site_root }}>
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/{{ site_name }}_error.log
|
|
CustomLog ${APACHE_LOG_DIR}/{{ site_name }}_access.log combined
|
|
</VirtualHost>
|
|
|