Skip to content

Instantly share code, notes, and snippets.

@chrisabrams
Created December 6, 2013 20:45
Show Gist options
  • Save chrisabrams/7831801 to your computer and use it in GitHub Desktop.
Save chrisabrams/7831801 to your computer and use it in GitHub Desktop.
Vagrant.configure("2") do |config|
config.vm.box = "projects"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
config.vm.network "public_network"
config.vm.provider "virtualbox" do |vb|
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
#vb.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
#vb.customize ["modifyvm", :id, "--rtcuseutc", "on"]
end
config.ssh.forward_agent = true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment