Skip to content

Instantly share code, notes, and snippets.

@rduplain
Created May 28, 2013 18:57
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 rduplain/5665183 to your computer and use it in GitHub Desktop.
Save rduplain/5665183 to your computer and use it in GitHub Desktop.
Simple Vagrantfile.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "precise32"
config.vm.box_url = "http://files.vagrantup.com/precise32.box"
config.vm.network :forwarded_port, guest: 80, host: 8080, auto_correct: true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment