ubuntu 下编译nginx0.8.47

wget http://nginx.org/download/nginx-0.8.47.tar.gz

sudo tar zxvf nginx-0.8.47.tar.gz
cd nginx-0.8.47

sudo ./configure --prefix=/usr/local/nginx-0.8.47

sudo make

sudo make install

在编译的过程中可能会出现以下提示:

./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.

sudo aptitude install libpcre3-dev

./configure: error: SSL modules require the OpenSSL library.
You can either do not enable the modules, or install the OpenSSL library
into the system, or build the OpenSSL library statically from the source
with nginx by using --with-openssl=<path> option

sudo aptitude install libssl-dev


原文地址:https://www.cnblogs.com/xiazh/p/1791471.html