Skip to content

Instantly share code, notes, and snippets.

@torumakabe
Last active February 23, 2016 02:15
Show Gist options
  • Save torumakabe/eb417b91a62cea044a7f to your computer and use it in GitHub Desktop.
Save torumakabe/eb417b91a62cea044a7f to your computer and use it in GitHub Desktop.
#!/bin/bash
apt-get -y update
# install Apache2
apt-get -y install apache2
# write some HTML
echo \<center\>\<h1\>Welcome to Azure!!\</h1\>\<br/\>\</center\> > /var/www/html/index.html
# restart Apache
apachectl restart
# install node
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
apt-get -y install nodejs
# install Git
apt-get -y install git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment