Last active
February 23, 2016 02:15
-
-
Save torumakabe/eb417b91a62cea044a7f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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