Sometimes, we need to install nginx separately to handle a large number of download requests. Rewrite and HTTP cache error resolution encountered by installing Nginx alone in CENTOS5:
wget http://nginx.org/download/nginx-0.8.33.tar.gz
TAR-ZXVF nginx-0.8.33.tar.gz
CD nginx-0.8.33
./configure--prefix=/usr/local/nginx
Install nginx times wrong
./configure:error:the HTTP Rewrite module requires the PCRE library.
Installing Pcre-devel to solve problems
Yum-y Install Pcre-devel
Error message:./configure:error:the HTTP Cache module requires MD5 functions
From the OpenSSL library. You can either disable the module by using
--without-http-cache option, or install the OpenSSL library into the system,
or build the OpenSSL library statically from the source with Nginx by using
--with-http_ssl_module--with-openssl=<path> Options.
Workaround:
Yum-y Install OpenSSL Openssl-devel
Summarize:
Yum-y Install Pcre-devel OpenSSL openssl-devel
./configure--prefix=/usr/local/nginx
Make
Make install
Get