# -*- mode: ruby -*- # vi: set ft=ruby : # For a complete reference, please see the online documentation at # https://docs.vagrantup.com. Vagrant.configure("2") do |config| config.vm.box = "debian/jessie64" config.vm.provision :shell, path: "bin/bootstrap_vagrant" config.vm.network "forwarded_port", guest: 80, host: 8000 end