RockyLinux9 安装Nginx 错误
./configure: error: C compiler cc is not found
解决:
sudo dnf groupinstall "Development Tools" sudo dnf install gcc glibc-devel
错误2:
./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.
解决:
sudo dnf install zlib-devel