今天就跟大家聊聊有关怎么在Nginx中安装Lua-nginx-模块模块,可能很多人都不太了解,为了让大家更加了解,本站给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
ngx_lua_module是一个nginx http模块,它把左上臂解析器内嵌到nginx,用来解析并执行左上臂语言编写的网页后台脚本
特性很牛叉,可自行百度查看,这里主要是示范一下,如何在Nginx下安装Lua-nginx-模块模块
当然,如果你之前没有安装过Nginx,而且嫌安装麻烦,可直接下载章亦春安装简单快捷,http://open resty。org/cn/installation。html(阿里的大牛章亦春的作品,膜拜~~~)
1.下载安装LuaJIT 2.1
cd/usr/local/src
wgethttp://luajit.org/download/LuaJIT-2.1.0-beta2.tar.gz
tarzxfLuaJIT-2.1.0-beta2.tar.gz
cdLuaJIT-2.1.0-beta2
makePREFIX=/usr/local/luajit
makinstallprefix=/usr/local/Lua JIT 2 .下载ngx_devel_kit(NDK)模块:
cd/usr/local/src
wget https://github。com/simple/ngx _ dev _ kit/archive/v 0。2 .19 .焦油。地面零点
tar-xzvfv0.2.19.tar.gz3 .下载最新的Lua-nginx-模块模块:
cd/usr/local/src
wget https://github。com/open resty/Lua-nginx-module/archive/v 0。10 .2 .焦油。地面零点
tar-xzvfv 0。10 .2 .焦油。gz 4。nginx-V查看已经编译的配置
nginx-V配置如下:
-prefix=/usr/local/nginx-user=www-group=www-with-http _ stub _ status _ module-with-http _ v2 _ module-with-http _ SSL _ module-with-IPv6-with-http _ gzip _ static _ module-with-http _ realip _ module-with-http _ flv _ module-with-OpenSSL=./openssl-1.0.2h - with-pcre=./pcre-8.38-with-pcre-JIT-with-LD-opt=-ljemalloc-with-LD-opt=-Wl,-rpath,/usr/local/Lua JIT/lib-add-module=/usr/local/src/ngx _ dev _ kit-0。2 .19-add-module=/usr/local/src/Lua-nginx-module-0。10 .25。进入之前安装服务器的解压目录,重新编译安装(在nginx -V得到的配置下,加入ngx _ dev _ kit-0。2 .19和ua-nginx-模块-0.10.2的目录),最终的配置如下:
设置环境变量
导出LuaJit _ LIB=/usr/local/LuaJit/LIB
导出Luajit _ INC=/usr/local/Luajit/include/Luajit-2.1代码如下:/configure-prefix=/usr/local/nginx-user=www-group=www-with-http _ stub _ status _ module-with-http _ v2 _ module-with-http _ SSL _ module-with-IPv6-with-http _ gzip _ static _ module-with-http _ realip _ module-with-http _ flv _ module-with-OpenSSL=./openssl-1.0.2h - with-pcre=./pcre-8.38-with-pcre-JIT-with-LD-opt='-ljemalloc '-with-LD-opt='-Wl,-rpath,/usr/local/Lua JIT/lib '-add-module=/usr/local/src/ngx _ dev _ kit-0。2 .19-add-module=/usr/local/src/Lua-nginx-module-0。10 .26。编译安装
make-j2
makeinstall7 .查看是否编译成功
在/usr/local/nginx/conf/nginx。主配置文件中加入如下代码:
位置/hello_lua{
default _ type " text/plain ";
content_by_lua'ngx.say('hello,Lua ')';
}重启nginx:
服务工程师重启访问10.211.55.3/hello_lua会出现"你好,卢阿"表示安装成功
你好,卢阿看完上述内容,你们对怎么在Nginx中安装Lua-nginx-模块模块有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注本站,感谢大家的支持。