This repository was archived by the owner on May 7, 2025. It is now read-only.

Description
In several environments, I've run into issues around the nfs setup - specifically with an error referring to permissions issues while mounting the directory.
By changing
if not is_windows
config.vm.synced_folder "www", "/var/www", :nfs => true
else
to
if not is_windows
config.vm.synced_folder "www", "/var/www", :nfs => false
else
You can disable NFS support which, while it may be less performant, can get you around these nfs related issues until a better solution is worked out.