Skip to content

Instantly share code, notes, and snippets.

@bmelton
Created April 17, 2014 14:27
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 bmelton/10987651 to your computer and use it in GitHub Desktop.
Save bmelton/10987651 to your computer and use it in GitHub Desktop.
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "astral1/saucy64"
config.vm.provision :shell, :path => "bootstrap.sh"
config.vm.network :forwarded_port, host: 4567, guest: 80
config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: ".git/"
config.vm.provider "virtualbox" do |vb|
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment