新版本nginx安装提示需要openssl的问题

新版本的nginx安装的时候未发现openssl的路径,有两种方式解决

方式一:

找到本地nginx的解压目录中 ,例如我的放到root下面了。

进入   /root/nginx1.24.0/auto/lib/openssl/conf  目录下修改内容 ,这两行都需要修改,原来为lib,不是lib64

新版本nginx安装提示需要openssl的问题_第1张图片

下面的两个都需要修改

ngx_feature_libs="-R/usr/local/lib64 -L/usr/local/lib64 -lssl -lcrypto"
ngx_feature_libs="-L/usr/local/lib64 -lssl -lcrypto"  
 

然后nginx重新 ./configure    --prefix=你的路径  --with-ssl-module

后面就可以。

方式二:

重新下载openssl的压缩包,下载下来最好是跟你本地的openssl版本一样。相当于直接用压缩包里面的lib库

openssl-官网

tar xf openssh-9.0p1.tar.gz

nginx重新 ./configure    --prefix=你的路径  --with-http_ssl_module --with-openssl=/usr/local/openssl-9.0.p1

你可能感兴趣的:(nginx,服务器,运维)