0

I use Vagrant and Puppet to recreate my live VPS and I'd like to test my PHP files locally against that. I have osx so during development I use the apache server there, but I'd like to use the same php files on the virtualbox rather than copy them over.

ed209
  • 187
  • 3
  • 8

1 Answers1

2

Share the directory over network (NFS, SAMBA, whatever) and mount it on the VirtualBox.

Stone
  • 7,011
  • 1
  • 21
  • 33
  • thanks. It's so easy to do via Vagrant http://vagrantup.com/v1/docs/config/vm/share_folder.html – ed209 Aug 07 '12 at 15:51