add Vagrant file
This commit is contained in:
parent
42588db791
commit
8b4df0c04d
16
Vagrantfile
vendored
Normal file
16
Vagrantfile
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.box = "ubuntu/focal64"
|
||||
config.vm.synced_folder ".", "/vagrant"
|
||||
config.vm.network(:forwarded_port, guest: 80, host: 8888)
|
||||
|
||||
config.vm.provision :shell, inline: <<-SHELL
|
||||
sudo apt-get -y update
|
||||
sudo apt-get -y install nginx
|
||||
|
||||
echo "Starting nginx..."
|
||||
sudo ln -s /vagrant/www /usr/share/nginx/html/map
|
||||
sudo cp /vagrant/www/index.html.en /vagrant/www/index.html
|
||||
sudo useradd -s /bin/false nginx
|
||||
sudo service nginx restart
|
||||
SHELL
|
||||
end
|
Loading…
Reference in New Issue
Block a user