]> git.openstreetmap.org Git - nominatim.git/blobdiff - Vagrantfile
adapt Ubunut-20 vagrant file to triple webserver config
[nominatim.git] / Vagrantfile
index dff597d69daf56d9541ab914fb80079245cf7133..3aa519b30cfd8dcc2719aca7fee36233b071fe78 100644 (file)
@@ -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|