标签:
一、下载pcre
yum install pcre*
二、下载purge模块(删除Nginx缓存)
wget http://labs.frickle.com/files/ngx_cache_purge-2.1.tar.gz
make && make install
三、安装zlib
wget http://prdownloads.sourceforge.net/libpng/zlib-1.2.8.tar.gz?download
tar zxvf zlib-1.2.8.tar.gz
./configure --prefix=/usr/local/zlib
make && make install
四、安装openssl
yum install openssl*
五、下载最新的nginx稳定版进行安装
wget http://nginx.org/download/nginx-1.8.1.tar.gz
tar zxvf *
./configure
--with-pcre
--add-module= #purge可选
--prefix=/usr/local/nginx
--with-http_stub_status_module
--with-http_ssl_module
--with-zlib=
--with-openssl=
安装:make && make install
到安装目录下sbin启动nginx即可,访问localhost验证。
标签:
原文地址:http://www.cnblogs.com/caizhifeng/p/5299428.html