Skip to main content
summaryrefslogtreecommitdiffstats
blob: b013b81cce6e0c6ca6f8ecbb6c746f9863ee68c2 (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