13 lines
361 B
Django/Jinja
13 lines
361 B
Django/Jinja
<VirtualHost *:80>
|
|
ServerAdmin webmaster@localhost
|
|
DocumentRoot {{ wp_install_dir }}
|
|
|
|
<Directory {{ wp_install_dir }}>
|
|
Options FollowSymLinks
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/wordpress_error.log
|
|
CustomLog ${APACHE_LOG_DIR}/wordpress_access.log combined
|
|
</VirtualHost> |