让Nginx支持Lua

sunsky 2013-09-25

nginx的强大,lua的高性能,真是一个不错的组合,合到一起就无敌了,呵呵。

下面开始配置nginx,使其支持lua,是通过一个nginx模块实现的,
模块地址:https://github.com/chaoslawful/lua-nginx-module
下载链接:https://github.com/chaoslawful/lua-nginx-module/archive/v0.8.10.tar.gz

1、下载源码、解压缩
a、nginx源码:
[root@localhost ~]# wget http://nginx.org/download/nginx-1.4.2.tar.gz
[root@localhost ~]# tar zxvf nginx-1.4.2.tar.gz

b、lua模块
[root@localhost ~]# wget -O lua-nginx-module-0.8.10.tar.gz https://github.com/chaoslawful/lua-nginx-module/archive/v0.8.10.tar.gz
[root@localhost ~]# tar zxvf lua-nginx-module-0.8.10.tar.gz

c、luajit(lua即时编译器)

[root@localhost ~]# wget http://luajit.org/download/LuaJIT-2.0.2.tar.gz
[root@localhost ~]# tar zxvf LuaJIT-2.0.2.tar.gz

d、ngx_devel_kit(nginx开发工具包)
12 [root@localhost ~]# wget -O ngx_devel_kit-0.2.18.tar.gz https://github.com/simpl/ngx_devel_kit/archive/v0.2.18.tar.gz
[root@localhost ~]# tar zxvf ngx_devel_kit-0.2.18.tar.gz

2、安装luajit
[root@localhost ~]# make
[root@localhost ~]# make install

 

3、安装nginx
方法a、使用luajit即时编译器

[root@localhost nginx-1.4.1]# export LUAJIT_LIB=/usr/local/lib
[root@localhost nginx-1.4.1]# export LUAJIT_INC=/usr/local/include/luajit-2.0
[root@localhost nginx-1.4.1]# ./configure \
--prefix=/usr/local/nginx-1.4.1 \
--with-http_stub_status_module \
--add-module=../lua-nginx-module-0.8.9 \
--add-module=../ngx_devel_kit-0.2.18
[root@localhost nginx-1.4.1]# make -j 4
[root@localhost nginx-1.4.1]# make install
[root@localhost ~]# echo '/usr/local/lib' >> /etc/ld.so.conf.d/lua.conf
[root@localhost ~]# ldconfig

方法b、使用lua编译器
[root@localhost nginx-1.4.1]# export LUA_LIB=/usr/lib64
[root@localhost nginx-1.4.1]# export LUA_INC=/usr/include
[root@localhost nginx-1.4.1]# ./configure \
--prefix=/usr/local/nginx-1.4.1 \
--with-http_stub_status_module \
--add-module=../lua-nginx-module-0.8.9 \
--add-module=../ngx_devel_kit-0.2.18
[root@localhost nginx-1.4.1]# make -j 4
[root@localhost nginx-1.4.1]# make install

注意:让nginx支持lua,有两种方法,一是使用luajit即时编译器,二是使用lua编译器。推荐使用luajit,因为效率高。


4、验证安装
使用lua编译器时显示如下:
[root@localhost ~]# lsof -p 3359 | grep -i lua
nginx  3359 root  mem  REG 8,3  183920 394551 /usr/lib64/liblua-5.1.so

使用luajit即时编译器时显示如下:
12 [root@localhost ~]# lsof -p 13177 | grep -i lua
nginx 13177 root mem REG 8,3 452024 405089 /usr/local/lib/libluajit-5.1.so.2.0.2

 

5、验证配置指令和输出
修改nginx.conf配置文件,加入下面指令:
location / {
    content_by_lua 'ngx.say("hello world!")';
}

重启nginx,用curl测试
[root@localhost ~]# curl -i localhost
HTTP/1.1 200 OK
Server: nginx/1.4.1
Date: Tue, 24 Sep 2013 23:23:58 GMT
Content-Type: application/octet-stream
Transfer-Encoding: chunked
Connection: keep-alive
hello world!

6、大功告成
更多可用指令请查阅:http://wiki.nginx.org/HttpLuaModule

推荐阅读:

Nginx 的详细介绍:请点这里
Nginx 的下载地址:请点这里

相关推荐

lwplvx / 0评论 2020-11-22
岁月如歌 / 0评论 2020-07-21