Skip to content

Instantly share code, notes, and snippets.

@havramar
Created February 11, 2015 08:36
Show Gist options
  • Save havramar/da9ae1eeb42f7a0de9b4 to your computer and use it in GitHub Desktop.
Save havramar/da9ae1eeb42f7a0de9b4 to your computer and use it in GitHub Desktop.
Vagrant (file) nfs on steroids
# Found here https://github.com/mitchellh/vagrant/issues/4204
if RUBY_PLATFORM =~ /mingw32/
config.vm.synced_folder ".", "/project"
else
config.vm.synced_folder ".", "/project", type: "nfs", mount_options:['nolock,vers=3,udp,noatime,actimeo=1']
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment