X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/91219bb3dd7c82ce0875dc7213e8eb4d172af313..2029931b95c4a70dae5c3eeb70fddb0d75c437ce:/Vagrantfile diff --git a/Vagrantfile b/Vagrantfile index dff597d6..3aa519b3 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -43,6 +43,24 @@ Vagrant.configure("2") do |config| end end + config.vm.define "ubuntu-apache" do |sub| + sub.vm.box = "generic/ubuntu2004" + sub.vm.provision :shell do |s| + s.path = "vagrant/Install-on-Ubuntu-20.sh" + s.privileged = false + s.args = [checkout, "install-apache"] + end + end + + config.vm.define "ubuntu-nginx" do |sub| + sub.vm.box = "generic/ubuntu2004" + sub.vm.provision :shell do |s| + s.path = "vagrant/Install-on-Ubuntu-20.sh" + s.privileged = false + s.args = [checkout, "install-nginx"] + end + end + config.vm.define "ubuntu18" do |sub| sub.vm.box = "generic/ubuntu1804" sub.vm.provision :shell do |s|