美文网首页
nginx安装参数(支持lua),使用openssl 1.1

nginx安装参数(支持lua),使用openssl 1.1

作者: 文龙少爷 | 来源:发表于2019-04-24 23:00 被阅读0次

nginx安装参数(支持lua)

使用openssl 1.1

下载luajit

git clone https://github.com/openresty/luajit2.git

然后安装

make install PREFIX=/usr/local/luajit

注意环境变量!

vi /etc/profile

在最下面添加

export LUAJIT_LIB=/usr/local/luajit/lib
export LUAJIT_INC=/usr/local/luajit/include/luajit-2.1

然后执行

source /etc/profile

在 /opt 目录下执行(随意)

cd /opt
mkdir nginx_module
wget https://www.openssl.org/source/openssl-1.1.1b.tar.gz
tar -zxf openssl-1.1.1b.tar.gz

先执行

cd /opt/nginx_module

下载ngx_devel_kit

git clone https://github.com/simplresty/ngx_devel_kit.git

下载echo模块

git clone https://github.com/openresty/echo-nginx-module.git

下载tengine

git clone https://github.com/alibaba/tengine.git

最后 下载nginx 解压 编译 安装

./configure --with-http_ssl_module --with-http_v2_module --with-openssl=/opt/openssl-1.1.1b --add-module=/opt/nginx_module/tengine/modules/ngx_http_concat_module --add-module=/opt/nginx_module/ngx_devel_kit --add-module=/opt/nginx_module/tengine/modules/ngx_http_lua_module --add-module=/opt/nginx_module/echo-nginx-module --with-ld-opt="-Wl,-rpath,$LUAJIT_LIB"

相关文章

  • nginx安装参数(支持lua),使用openssl 1.1

    nginx安装参数(支持lua) 使用openssl 1.1 下载luajit 然后安装 注意环境变量! 在最下面...

  • Nginx学习笔记1

    源码安装Nginx 安装必要软件 安装pcre为了支持rewrite功能 安装openssl需要ssl的支持,如果...

  • Nginx 配置集成 php-fpm

    nginx 下载nginx二进制包。编译参数 nginx 编译需要先安装 openssl , pcre zlib...

  • CentOS 7 安装 Nginx

    CentOS 7 安装 Nginx 使用nginx代理 . 安装依赖 检查是否安装了gcc,openssl,zli...

  • Nginx+lua环境

    Nginx安装lua支持 需要LuaJIT-2.0.4.tar.gz,ngx_devel_kit,lua-ngin...

  • nginx_lua 跳转验证码

    一 Nginx加载Lua环境 默认情况下Nginx不支持Lua模块, 需要安装LuaJIT解释器, 并且需要重新...

  • nginx 维护笔记

    nginx 维护笔记 安装 安装依赖 prce(重定向支持)和openssl(https支持,如果不需要https...

  • Nginx负载、HTTPS转发HTTP

    一、安装Nginx在安装nginx之前需要安装:gcc++ 、openssl 、openssl-develyum ...

  • nginx配置局域网访问https

    一、安装Nginx (安装Nginx直接解压便可以用) 二、安装Openssl 1、到nginx查看openssl...

  • Nginx(八) 配合使用Lua

    默认情况下Nginx不支持Lua模块,需要安装LuaJIT解释器,并且重新编译Nginx,或者可使用国人开发的op...

网友评论

      本文标题:nginx安装参数(支持lua),使用openssl 1.1

      本文链接:https://www.haomeiwen.com/subject/lgcogqtx.html