Skip to content

Instantly share code, notes, and snippets.

@sergixnet
Last active December 23, 2015 08:44
Show Gist options
  • Save sergixnet/50eb6310a7f3628d00bd to your computer and use it in GitHub Desktop.
Save sergixnet/50eb6310a7f3628d00bd to your computer and use it in GitHub Desktop.
Vagrant shared forlders config on Vagrantfile with VVV
if vagrant_version >= "1.3.0"
config.vm.synced_folder "/Users/sudar/Dropbox/plugins/", "/srv/www/wordpress-default/wp-content/plugins", :owner => "www-data", :mount_options => [ "dmode=775", "fmode=774" ]
else
config.vm.synced_folder "/Users/sudar/Dropbox/plugins/", "/srv/www/wordpress-default/wp-content/plugins", :owner => "www-data", :extra => 'dmode=775,fmode=774'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment