Open
Description
I've found out that if you switch to NFS you get a speed bump in term of performance.
All you need to do is replace these two lines in your vagrantfile :
config.vm.synced_folder ".", "/vagrant",:mount_options => ['dmode=755', 'fmode=644'] config.vm.synced_folder _conf['sync_folder'], _conf['document_root'], :create => "true", :mount_options => ['dmode=755', 'fmode=644']
by
config.vm.synced_folder ".", "/vagrant", type: "nfs" config.vm.synced_folder _conf['sync_folder'], _conf['document_root'], type: "nfs"
I'm wondering why it's not setup by default.