Skip to content
This repository has been archived by the owner on Jan 21, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/168'
Browse files Browse the repository at this point in the history
Close #168
  • Loading branch information
weierophinney committed Jan 9, 2019
2 parents 410415a + 630f0a6 commit 05345e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -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|
Expand Down

0 comments on commit 05345e3

Please sign in to comment.