github.com/jrperritt/terraform@v0.1.1-0.20170525065507-96f391dafc38/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