欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

CentOS安装Nginx 报错 博客分类: Linuxnginx configure nginxcentosPCRE

程序员文章站 2024-03-07 11:51:21
...

错误提示:
./configure: error: the HTTP rewrite module requires the PCRE library.
 
安装pcre-devel与openssl-devel解决问题
 
yum -y install pcre-devel openssl openssl-devel
 
./configure --prefix=/usr/local/nginx
make
make install
相关标签: nginx centos PCRE