下载并解压pcre、zlib 和 Nginx 源码。 ``sh cd /usr/local/src wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.33.tar.gz wget http://zlib.net/zlib-1.2.8.tar.gz wget http://nginx.org/download/nginx-1.4.2.tar.gz tar xf pcre-8.33.tar.gz tar xf zlib-1.2.8.tar.gz ``
3
编译安装pcre 和zlib。 ``sh cd pcre-8.33 ./configure --prefix=/usr/local/src/pcre make make install cd ../zlib-1.2.8 ./configure --prefix=/usr/local/src/zlib make make install ``
3、编译Nginx:
步骤
描述
1
使用编译选项配置Nginx。 ``sh cd nginx-1.4.2 ./configure --with-pcre=/usr/local/src/pcre --with-zlib=/usr/local/src/zlib --user=www --group=www --with-http_stub_status_module --with-http_ssl_module --with-http_realip_module make make install ``