Skip to content

Instantly share code, notes, and snippets.

@skull-squadron
Created August 26, 2011 07:26
Show Gist options
  • Save skull-squadron/1172904 to your computer and use it in GitHub Desktop.
Save skull-squadron/1172904 to your computer and use it in GitHub Desktop.
Install nginx on ubuntu
#!/bin/sh
if [ `id -u` != 0 ]; then
echo "Rerun as root"
exit 1
fi
apt-get install -y --no-install-recommends python-software-properties patch
add-apt-repository ppa:nginx/stable
apt-get update
# Rerun due to infrequent update bug
apt-get update
apt-get install -y --no-install-recommends nginx-extras
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment