Mercurial > hg > soundsoftware-site
view deploy/vagrant/Vagrantfile @ 1622:f3144e23ca1d live
Don't try to use cgitb, it just causes problems with Apache CGI interface
author | Chris Cannam |
---|---|
date | Fri, 10 Aug 2018 11:22:30 +0100 |
parents | d8949733849d |
children |
line wrap: on
line source
# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure("2") do |config| config.vm.box = "ubuntu/xenial64" config.vm.network "forwarded_port", guest: 80, host: 8080 config.vm.synced_folder "../..", "/code-to-deploy" config.vm.provision :shell, path: "vagrant-provision.sh" end