diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ca1163..f96a6da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file, in reverse chronological order by release. -## 1.5.2 - TBD +## 1.5.2 - 2019-01-09 ### Added @@ -22,7 +22,8 @@ All notable changes to this project will be documented in this file, in reverse ### Fixed -- Nothing. +- [#168](/~https://github.com/zfcampus/zf-apigility-skeleton/pull/168) fixes file permissions of the `/var/www` folder when using Vagrant, + setting them to the `www-data` user. ## 1.5.1 - 2018-08-15 diff --git a/Vagrantfile b/Vagrantfile index 47cf54b..59d1805 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -46,7 +46,7 @@ SCRIPT Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.box = 'bento/ubuntu-16.04' config.vm.network "forwarded_port", guest: 80, host: 8080 - config.vm.synced_folder '.', '/var/www' + config.vm.synced_folder '.', '/var/www', owner: "www-data", group: "www-data" config.vm.provision 'shell', inline: @script config.vm.provider "virtualbox" do |vb|