#!/bin/sh # Description: Installs Nginx with places in /usr/local/nginx. # # Author: khan.Chan # Weblog: atman.memoab.com # # 2007-06-01 ## http://www.pcre.org/ # # the pcre package & nginx with as same directory. wget -c http://jaist.dl.sourceforge.net/sourceforge/pcre/pcre-7.1.tar.gz tar xvzf pcre-7.1.tar.gz cd pcre-7.1 ./configure --prefix=/usr/local make make install cd .. ## http://nginx.net wget -c http://sysoev.ru/nginx/nginx-0.5.23.tar.gz tar xvzf nginx-0.5.23.tar.gz cd nginx-0.5.23 ./configure \ --sbin-path=/usr/local/nginx/nginx \ --conf-path=/usr/local/nginx/nginx.conf \ --pid-path=/usr/local/nginx/nginx.pid --with-http_ssl_module --with-pcre=../pcre-7.1 cd ..