From 7728c01360801a78cc84795c19d77021aa05a742 Mon Sep 17 00:00:00 2001 From: Kelvin Date: Sun, 27 Dec 2015 12:36:23 +0000 Subject: [PATCH] Start nginx on every VM boot, fixes #45 Add missing colon to Vagrantfile Add copy-and-restart-configs.sh to always provision --- Vagrantfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 5cbef557..d930d8fc 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -24,4 +24,6 @@ Vagrant.configure("2") do |config| config.vm.synced_folder "../pony.fm.files", "/vagrant-files", type: "nfs" config.bindfs.bind_folder "/vagrant", "/vagrant" + + config.vm.provision "shell", path: "vagrant/copy-and-restart-configs.sh", run: "always" end