12 lines
274 B
Plaintext
12 lines
274 B
Plaintext
|
<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>
|
||
|
|
||
|
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
|