Skip to content

Instantly share code, notes, and snippets.

@netodevel
Created February 15, 2016 16:30
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 netodevel/6eee6e977016125520c7 to your computer and use it in GitHub Desktop.
Save netodevel/6eee6e977016125520c7 to your computer and use it in GitHub Desktop.
VAGRANTFILE_API_VERSION = '2'
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = 'precise32'
config.vm.network :forwarded_port, guest: 80, host: 8080
config.ssh.insert_key = false
end
@netodevel
Copy link
Author

add line
config.vm.box_url = "http://files.vagrantup.com/precise32.box"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment