CentOS安装Nginx 报错“configure: error: the HTTP rewrite module requires the PCRE library”解决办法

注:本文转载自 http://www.ishare1.cn/?p=791

CentOS安装Nginx 报错“configure: error: the HTTP rewrite module requires the PCRE library”解决办法

CentOS 6.2 安装Nginx时报错

错误提示:
./configure: error: the HTTP rewrite module requires the PCRE library.

解决办法:

  1. 安装 pcre-devel 与 openssl-devel
  2. yum -y install pcre-devel openssl openssl-devel
  3. ./configure --prefix=/usr/local/nginx
  4. make
  5. make install

你可能感兴趣的:(CentOS安装Nginx 报错“configure: error: the HTTP rewrite module requires the PCRE library”解决办法)