github.com/gerbenjacobs/terraform@v0.9.5-0.20170630130047-e6ddd62583d8/examples/google-content-based-load-balancing/scripts/install-video.sh (about) 1 #!/bin/bash -xe 2 sudo apt-get update 3 sudo apt-get install apache2 -y 4 sudo a2ensite default-ssl 5 sudo a2enmod ssl 6 sudo service apache2 restart 7 echo '<!doctype html><html><body><h1>www-video</h1></body></html>' | sudo tee /var/www/html/index.html 8 sudo mkdir /var/www/html/video 9 echo '<!doctype html><html><body><h1>www-video</h1></body></html>' | sudo tee /var/www/html/video/index.html