Skip to main content
summaryrefslogtreecommitdiffstats
blob: d806a7e9d6ebc6d3c7bb9140c22fa97ee0bebb31 (plain) (blame)
1
2
3
4
5
6
7
8
9
Vagrant::Config.run do |config|
  config.vm.box = "precise32"
  config.vm.box_url = "http://files.vagrantup.com/precise32.box"

  config.vm.forward_port 80, 2080
  config.vm.forward_port 443, 2443

  config.vm.provision :puppet, :module_path => "modules"
end

Back to the top