Fixed WordPress Permissions

Updated WordPress to 5.1.1. Gave apache2 ownership over Public HTML
Enabled mod_rewrite and options to allow pretty urls.
This commit is contained in:
2019-03-13 22:22:50 -04:00
parent 7f377e676d
commit e7f532b26b
3 changed files with 18 additions and 4 deletions

View File

@@ -8,4 +8,10 @@
CustomLog {{ wp_dir }}/logs/access.log combined
</VirtualHost>
<Directory {{ wp_dir }}/public_html>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet