Skip to content

Instantly share code, notes, and snippets.

@bastiankoetsier
Created July 14, 2014 06:47
Show Gist options
  • Save bastiankoetsier/f9d818dde6903ccb3e25 to your computer and use it in GitHub Desktop.
Save bastiankoetsier/f9d818dde6903ccb3e25 to your computer and use it in GitHub Desktop.
NFS for Homestead
# Register All Of The Configured Shared Folders
settings["folders"].each do |folder|
#config.vm.synced_folder folder["map"], folder["to"], type: folder["type"] ||= nil
config.vm.synced_folder folder["map"], folder["to"],
id: folder["map"],
:nfs => true,
:mount_options => ['nolock,vers=3,udp,noatime']
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment