nginx + OpenSSL 安装

nginx + OpenSSL 安装
CHANGES
LICENSE
README
conf
contrib
man
openssl-1.0.0d
pcre-8.12
src/
CHANGES.ru
Makefile
auto
configure
html/
objs/
openssl-1.0.0d.tar.gz
pcre-8.12.tar.gz


./configure ./configure --with-pcre=/pcre-8.12 --with-openssl=/openssl-1.0.0d
checking for OpenSSL md5 crypto library ... not found

./configure: error: the HTTP cache module requires md5 functions from OpenSSL library.  

您可以使用 禁用模块--without-http-cache option,或者将 OpenSSL 库安装到系统中,或者使用--with-http_ssl_module --with-openssl=<path>选项通过 nginx 从源静态构建 OpenSSL 库。

任何想法?

答案1

您需要安装 libssl 开发标头。这需要软件包libssl-dev(应该在存储库中,或者转到这里用于包文件。

相关内容