中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Nginx如何添加lua模塊

發布時間:2022-06-02 14:17:11 來源:億速云 閱讀:446 作者:iii 欄目:大數據

這篇文章主要介紹“Nginx如何添加lua模塊”,在日常操作中,相信很多人在Nginx如何添加lua模塊問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Nginx如何添加lua模塊”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

安裝 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!

到此,關于“Nginx如何添加lua模塊”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

晋江市| 茶陵县| 黔西县| 汪清县| 北流市| 米林县| 西吉县| 凌海市| 宁波市| 公主岭市| 铁力市| 江西省| 盐城市| 曲阳县| 甘德县| 周口市| 额尔古纳市| 石家庄市| 阜新市| 呼图壁县| 新野县| 曲松县| 遂昌县| 凤山县| 张北县| 沈阳市| 鹿邑县| 年辖:市辖区| 崇左市| 迁西县| 当涂县| 延津县| 郸城县| 海阳市| 太湖县| 烟台市| 曲沃县| 永靖县| 正蓝旗| 灵丘县| 鄂托克旗|