Nginx 新增 lua 模組

13sai發表於2019-11-15

安裝lua

wget http://luajit.org/download/LuaJIT-2.0.5.tar.gz 
tar -zxvf LuaJIT-2.0.5.tar.gz
cd LuaJIT-2.0.5
make && make install PREFIX=/usr/local/LuaJIT

etc/profile加入

# lua
export LUAJIT_LIB=/usr/local/LuaJIT/lib 
export LUAJIT_INC=/usr/local/LuaJIT/include/luajit-2.0

source etc/profile

下載ngx_devel_kit模組

wget https://github.com/simpl/ngx_devel_kit/archive/v0.3.0.tar.gz

NDK(nginx development kit)模組是一個擴充nginx伺服器核心功能的模組,第三方模組開發可以基於它來快速實現。 NDK提供函式和巨集處理一些基本任務, 減輕第三方模組開發的程式碼量

下載lua-nginx-module模組

 wget https://github.com/openresty/lua-nginx-module/archive/v0.10.9rc7.tar.gz 

lua-nginx-module 模組使nginx中能直接執行lua

檢視原始編譯

nginx -V

如:
configure arguments: --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --with-http_sub_module --with-http_v2_module

進入nginx原始目錄:

./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --with-http_sub_module --with-http_v2_module --add-module=/root/lua-nginx-module-0.10.9rc7/ --add-module=/root/ngx_devel_kit-0.3.0

只make,不執行make install。

編譯報錯應該就是lua環境變數不對。

nginx -V 命令報錯
./nginx: error while loading shared libraries: libluajit-5.1.so.2: cannot open shared object file: No such file or directory

解決:
echo "/usr/local/LuaJIT/lib" >> /etc/ld.so.conf

ldconfig

成功之後可以nginx -V檢視,無報錯即可。

把原來的nginx備份為nginx_old

cp objs/nginx到原來的nginx並覆蓋。

在編譯目錄執行

make upgrade

Nginx 新增 lua 模組

測試:

server{
    ...
    location /lua {
        default_type 'text/html';
        content_by_lua '
                ngx.say("hello, lua!")
        ';
    }
    ...
}

瀏覽器開啟:

http://blog.13sai.com/lua

可以看到hello, lua!

分享開發知識,歡迎交流。

相關文章