Skip to content

Instantly share code, notes, and snippets.

@arielelkin
Last active November 20, 2015 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arielelkin/0c974b2d81f9f4e5f4f5 to your computer and use it in GitHub Desktop.
Save arielelkin/0c974b2d81f9f4e5f4f5 to your computer and use it in GitHub Desktop.
Compile nginx standalone without root access
# Compile nginx standalone without root access
mkdir ~/installed
mkdir ~/installed/nginx
mkdir ~/src
cd ~/src
wasup wasup
# Grab nginx
wget http://sysoev.ru/nginx/nginx-0.7.50.tar.gz
tar -xzvf nginx-0.7.50.tar.gz
# Compile it
cd nginx-0.7.50
./configure --prefix=/home/simon/installed/nginx --with-pcre=/home/simon/src/pcre-7.8
make
make install
# Edit config to not bind to port 80 (as we aren't root)
vi ~/installed/nginx/conf/nginx.conf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment