Skip to content

Instantly share code, notes, and snippets.

@feczo
Last active August 29, 2015 14:04
Show Gist options
  • Save feczo/5521e4e3974f52d2f087 to your computer and use it in GitHub Desktop.
Save feczo/5521e4e3974f52d2f087 to your computer and use it in GitHub Desktop.
apt-get -y update
apt-get -y install nginx; 
echo "<center><h2>Welcome to $HOSTNAME</h2></center>" | sudo tee /usr/share/nginx/www/index.html;
service nginx start

eg.:

gcloud compute instances create my-first-instance --image debian-7 --metadata startup-script='apt-get -y update; apt-get -y install nginx; echo "<center><h2>Welcome to $HOSTNAME</h2></center>" | sudo tee /usr/share/nginx/www/index.html; service nginx start'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment