FRITA-infra/roles/wordpress/templates/wordpress.conf.j2
Kris Lamoureux 82180d6b0d
Added webserver and wordpress roles
Added a basic LAMP stack role called webserver then I added a
wordpress role that sets up a basic wordpress configuration.
2019-01-02 00:04:01 -05:00

12 lines
274 B
Django/Jinja

<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