2019-01-02 05:04:01 +00:00
|
|
|
<VirtualHost *:80>
|
|
|
|
ServerName {{ wp_domain }}
|
|
|
|
|
|
|
|
ServerAdmin {{ wp_admin_email }}
|
|
|
|
DocumentRoot {{ wp_dir }}/public_html
|
|
|
|
|
|
|
|
ErrorLog {{ wp_dir }}/logs/error.log
|
|
|
|
CustomLog {{ wp_dir }}/logs/access.log combined
|
|
|
|
</VirtualHost>
|
|
|
|
|
2019-03-14 02:22:50 +00:00
|
|
|
<Directory {{ wp_dir }}/public_html>
|
|
|
|
Options Indexes FollowSymLinks
|
|
|
|
AllowOverride All
|
|
|
|
Require all granted
|
|
|
|
</Directory>
|
|
|
|
|
2019-01-02 05:04:01 +00:00
|
|
|
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
|