-
./configure: error: the HTTP gzip module requires the zlib library. -
You can either disable the module by using --without-http_gzip_module -
option, or install the zlib library into the system, or build the zlib library -
statically from the source with nginx by using --with-zlib=<path> option.
在nginx中我们执行“./configure” 会提示 error: the HTTP gzip module requires the zlib library意思是告诉我们没有zlib library的支持了 碰到此类问题我们只要安装这个库就可以了。
yum install -y zlib-devel
在执行nginx的./configure时遇到错误提示,表示HTTPgzip模块需要zlib库支持。解决方案包括禁用gzip模块、系统级安装zlib库或静态编译nginx时指定zlib路径。可以使用yuminstall-yzlib-devel命令来安装zlib-devel。

1万+

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



