执行./configure的时候出现error
1.Ubuntu the HTTP rewrite module requires the PCRE library
缺少pcre
执行 sudo apt-get install libpcre3 libpcre3-dev
sudo apt-get install openssl libssl-dev
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 apt-get install zlib1g-dev
标签:sudo,get,zlib,module,nginx,library,install,ubuntu,安装 From: https://www.cnblogs.com/perfectCats/p/17998755