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

Commit 05345e3

Browse files
committed
Merge branch 'hotfix/168'
Close #168
2 parents 410415a + 630f0a6 commit 05345e3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to this project will be documented in this file, in reverse chronological order by release.
44

5-
## 1.5.2 - TBD
5+
## 1.5.2 - 2019-01-09
66

77
### Added
88

@@ -22,7 +22,8 @@ All notable changes to this project will be documented in this file, in reverse
2222

2323
### Fixed
2424

25-
- Nothing.
25+
- [#168](https://github.com/zfcampus/zf-apigility-skeleton/pull/168) fixes file permissions of the `/var/www` folder when using Vagrant,
26+
setting them to the `www-data` user.
2627

2728
## 1.5.1 - 2018-08-15
2829

Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ SCRIPT
4646
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
4747
config.vm.box = 'bento/ubuntu-16.04'
4848
config.vm.network "forwarded_port", guest: 80, host: 8080
49-
config.vm.synced_folder '.', '/var/www'
49+
config.vm.synced_folder '.', '/var/www', owner: "www-data", group: "www-data"
5050
config.vm.provision 'shell', inline: @script
5151

5252
config.vm.provider "virtualbox" do |vb|

0 commit comments

Comments
 (0)