niginx安装
版本: nginx-1.2.1
注意:安装之前要保证已经安装了 gcc 和gcc-c++
.tar.bz2的解压方法是:bzip2 -d xxxx???? tar -xvf xxxx
?
?
?
运行./configure --prefix=/usr/nginx?提示:
./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre=<path> option.
?
nginx安装依赖PCRE包,也可以直接disable掉rewrite模块。
下载安装PCRE包http://www.pcre.org/
?
?
再次运行./configure --prefix=/usr/nginx?提示:
./configure: error: the HTTP gzip module requires the zlib library.
You can either disable the module by using --without-http_gzip_module
option, or install the zlib library into the system, or build the zlib library
statically from the source with nginx by using --with-zlib=<path> option.
?
nginx安装依赖zlib包,也可以直接disable掉gzip模块。
下载安装zlib包http://www.zlib.org/
?
?