github.com/ticketmaster/terraform@v0.10.0-beta2.0.20170711045249-a12daf5aba4f/examples/google-content-based-load-balancing/scripts/install-www.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</h1></body></html>' | sudo tee /var/www/html/index.html