ubuntu 编译nginx时出错解决办法

来源:互联网 发布:毒药法术升级数据 编辑:程序博客网 时间:2024/05/17 20:12
./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.

sudo aptitude install libpcre3-dev

./configure: error: SSL modules require the OpenSSL library.
You can either do not enable the modules, or install the OpenSSL library
into the system, or build the OpenSSL library statically from the source
with nginx by using --with-openssl=<path> option

sudo aptitude install libssl-dev


转载自http://blog.163.com/dingding_jacky/blog/static/1669127872010101904621142/

0 0