环境:
操作系统:lsb_release -a
Ubuntu 20.04.2
Nginx :1.18.0
一:编译nginx
报错处理:
./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre=<path> option.
解决办法:
apt-get install libpcre3 libpcre3-dev -y
./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.
解决办法:
apt install zlib1g zlib1g-dev -y