Skip to content

Instantly share code, notes, and snippets.

@zacharyblank
Created December 2, 2014 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zacharyblank/a59442d51780d185d90b to your computer and use it in GitHub Desktop.
Save zacharyblank/a59442d51780d185d90b to your computer and use it in GitHub Desktop.
Basic Vagrant
Vagrant.configure("2") do |config|
config.vm.box = "trusty64"
config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-i386-vagrant-disk1.box"
config.vm.network :private_network, ip: "198.18.0.114"
config.vm.synced_folder "./web", "/vagrant/web", owner: "www-data", group: "www-data", mount_options: ["dmode=775,fmode=664"]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment