编译OpenResty遇到找不到OpenSSL的解决办法

以OpenResty-1.19.9.1为例

编辑openresty-1.19.9.1/build/nginx-1.19.9/auto/lib/openssl/conf

conf 复制代码
CORE_INCS="$CORE_INCS $OPENSSL/.openssl/include"
CORE_DEPS="$CORE_DEPS $OPENSSL/.openssl/include/openssl/ssl.h"
CORE_LIBS="$CORE_LIBS $OPENSSL/.openssl/lib/libssl.a"
CORE_LIBS="$CORE_LIBS $OPENSSL/.openssl/lib/libcrypto.a"

将/.openssl去掉

conf 复制代码
CORE_INCS="$CORE_INCS $OPENSSL/include"
CORE_DEPS="$CORE_DEPS $OPENSSL/include/openssl/ssl.h"
CORE_LIBS="$CORE_LIBS $OPENSSL/lib/libssl.a"
CORE_LIBS="$CORE_LIBS $OPENSSL/lib/libcrypto.a"

重新编译提示usr/local/openssl/lib/libssl.a:没有那个文件或目录错误,需要将上面文件中的lib改为lib64

相关推荐
努力--坚持2 天前
电商项目-网站首页高可用(一)
nginx·lua·openresty
m0_748250742 天前
高性能Web网关:OpenResty 基础讲解
前端·openresty
大熊程序猿6 天前
docker 安装openresty
docker·容器·openresty
serve the people7 天前
Openresty自定义状态码高性能方案
java·spring·openresty
m0_7482331716 天前
OpenResty & Nginx:详细对比与部署指南
运维·nginx·openresty
ac.char22 天前
要使用 OpenResty 创建一个接口,返回客户端的 IP 地址,并以 JSON 格式输出
tcp/ip·json·openresty
unix2linux1 个月前
YOLO v5 Series - Image & Video Storage ( Openresty + Lua)
yolo·lua·openresty
编程武士1 个月前
nginx openresty lua-resty-http 使用的一些问题记录
nginx·lua·openresty·lua-resty-http
GDAL1 个月前
openresty入门教程:access_by_lua_block
开发语言·lua·openresty
GDAL1 个月前
openresty入门教程:init_by_lua_block
开发语言·lua·openresty