c compiler cc is not found
检查是否一安装gcc如果没有,执行apt install gcc
进行安装
如果已经安装了gcc,但还是包错误,就需要执行apt install build-essential
./configure: error: the HTTP rewrite module requires the PCRE library
遇到这个问题只需要安装pcre就可以了1
apt install libpcre3 libpcre3-dev
./configure: error: the HTTP gzip module requires the zlib library
说明缺少zlib,执行下面的命令安装1
apt install zlib1g-dev
另外openssl也是常用的所以最好也安装一下1
apt install openssl libssl-dev
总结
编译nginx之前先做好准备工作,这样就可以安心编译了1
apt install make gcc libpcre3 libpcre3-dev zlib1g-dev openssl libssl-dev