#!/bin/bash # Update apt cache. sudo apt-get update # Install Nginx. sudo apt-get install -y nginx # Set the home page. echo "

Welcome to Azure! My name is $(hostname).

" | sudo tee -a /var/www/html/index.html