./configure: error: the HTTP rewrite module requires the PCRE library.
模块依赖性Nginx需要依赖下面3个包
1. gzip 模块需要 zlib 库 ( 下载: http://www.zlib.net/ )
2. rewrite 模块需要 pcre 库 ( 下载: http://www.pcre.org/ )
3. ssl 功能需要 openssl 库 ( 下载: http://www.openssl.org/ )
Nginx包下载: http://nginx.org/en/download.html
依赖包安装顺序依次为:openssl、zlib、pcre, 然后安装Nginx包.
使用在线安装
yum -y install pcre-devel openssl openssl-devel
网上源码安装
http://blog.youkuaiyun.com/dyllove98/article/details/8892509
本文介绍Nginx配置过程中遇到的HTTP rewrite模块依赖问题及解决方案,包括必须安装的zlib、pcre和openssl库,并提供在线安装与源码安装两种方式。
2126

被折叠的 条评论
为什么被折叠?



