Skip to content

Instantly share code, notes, and snippets.

@tkjaergaard
Last active December 31, 2015 09:19
Show Gist options
  • Select an option

  • Save tkjaergaard/7966319 to your computer and use it in GitHub Desktop.

Select an option

Save tkjaergaard/7966319 to your computer and use it in GitHub Desktop.
Simple Vagrantfile for quick setup
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) 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
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment