#!/bin/bash # Update apt cache. sudo apt-get update #We need to add repo before installing nginx-core. Otherwise we get an error sudo add-apt-repository main sudo add-apt-repository universe sudo add-apt-repository restricted sudo add-apt-repository multiverse # 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