copy of the Ubuntu18 vagrant setup but with nginx as webserver

This commit is contained in:
marc tobias
2018-09-20 18:18:41 +02:00
parent c5109d39d0
commit a165072915
2 changed files with 129 additions and 0 deletions

9
Vagrantfile vendored
View File

@@ -23,6 +23,15 @@ Vagrant.configure("2") do |config|
end
end
config.vm.define "ubuntu18nginx" do |sub|
sub.vm.box = "bento/ubuntu-18.04"
sub.vm.provision :shell do |s|
s.path = "vagrant/Install-on-Ubuntu-18-nginx.sh"
s.privileged = false
s.args = [checkout]
end
end
config.vm.define "ubuntu16" do |sub|
sub.vm.box = "bento/ubuntu-16.04"
sub.vm.provision :shell do |s|