91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

動態擴展Nginx支持Lua功能

發布時間:2020-06-18 15:08:27 來源:網絡 閱讀:3324 作者:在下鄭小明 欄目:建站服務器

一、Lua說明:


 Lua 是一個簡潔、輕量、可擴展的腳本語言,也是號稱性能最高的腳本語言,用在很多需要性能的地方,比如:游戲腳本,nginx,wireshark的腳本,當你把他的源碼下下來編譯后,你會發現解釋器居然不到200k,非常變態。很多應用程序使用Lua作為自己的嵌入式腳本語言,以此來實現可配置性、可擴展性。


二、實驗環境:

 

 192.168.1.194服務器(centos 6.5 final版本)

 nginx版本:nginx-1.6.1


三、安裝配置:


 這里假定已經安裝好了nginx(安裝nginx比較簡單,網上案例很多),下面開始動態編譯擴展nginx使其支持lua腳本。


  • 下載并安裝luajit(lua即時編譯器)

# wget http://luajit.org/download/LuaJIT-2.0.2.tar.gz 
# tar zxvf LuaJIT-2.0.2.tar.gz
# cd LuaJIT-2.0.2
# make 
# make install


  • 下載lua-nginx-module模塊和ngx_devel_kit(nginx開發工具)到nginx的同級目錄解壓

#wget https://codeload.github.com/openresty/lua-nginx-module/zip/v0.10.1 -o lua-nginx-module-0.10.1.zip
#unzip lua-nginx-module-0.10.1.zip

#wget -o ngx_devel_kit-0.2.18.tar.gz https://github.com/simpl/ngx_devel_kit/archive/v0.2.18.tar.gz 
#tar zxvf ngx_devel_kit-0.2.18.tar.gz


  • nginx -V可以查看nginx的版本,以及之前編譯的項目。

# /usr/local/apps/nginx/sbin/nginx -V

nginx version: nginx/1.6.1
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-17) (GCC) 
TLS SNI support enabled
configure arguments: --prefix=/usr/local/apps/nginx/ --user=nginx --group=nginx --with-http_stub_status_module --with-http_gzip_static_module --with-http_flv_module --with-http_mp4_module --with-pcre=/home/workspace/auto_deploy/software/nginx/pcre-8.30 --with-openssl=/home/workspace/auto_deploy/software/nginx/openssl-1.0.1i --add-module=../gnosek-nginx-upstream-fair-a18b409/ --add-module=../ngx_cache_purge-2.1 --with-http_ssl_module


  • 要想nginx支持lua,有兩種方法:

    • 方法a、使用luajit即時編譯器

# export LUAJIT_LIB=/usr/local/lib 
# export LUAJIT_INC=/usr/local/include/luajit-2.0 
# ./configure --prefix=/usr/local/apps/nginx/ --user=nginx --group=nginx --with-http_stub_status_module --with-http_gzip_static_module --with-http_flv_module --with-http_mp4_module --with-pcre=/home/workspace/auto_deploy/software/nginx/pcre-8.30 --with-openssl=/home/workspace/auto_deploy/software/nginx/openssl-1.0.1i --add-module=../gnosek-nginx-upstream-fair-a18b409/ --add-module=../ngx_cache_purge-2.1 --with-http_ssl_module --add-module=../lua-nginx-module-0.10.1/ --add-module=../ngx_devel_kit-0.2.18/
# make -j 4 
# make install 
# echo '/usr/local/lib' >> /etc/ld.so.conf.d/lua.conf 
# ldconfig


    • 方法b、使用lua編譯器


# export LUA_LIB=/usr/lib64 
# export LUA_INC=/usr/include 
# ./configure --prefix=/usr/local/apps/nginx/ --user=nginx --group=nginx --with-http_stub_status_module --with-http_gzip_static_module --with-http_flv_module --with-http_mp4_module --with-pcre=/home/workspace/auto_deploy/software/nginx/pcre-8.30 --with-openssl=/home/workspace/auto_deploy/software/nginx/openssl-1.0.1i --add-module=../gnosek-nginx-upstream-fair-a18b409/ --add-module=../ngx_cache_purge-2.1 --with-http_ssl_module --add-module=../lua-nginx-module-0.10.1/ --add-module=../ngx_devel_kit-0.2.18/
# make -j 4 
# make install


    注意:讓nginx支持lua,有兩種方法,一是使用luajit即時編譯器,二是使用lua編譯器。推薦使用luajit,因為效率高。

 編譯安裝好,nginx就可以支持lua腳本了。

 再用nginx -V看一下nginx支持的模塊

# /usr/local/rktsapps/nginx/sbin/nginx -V

nginx version: nginx/1.6.1
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-17) (GCC) 
TLS SNI support enabled
configure arguments: --prefix=/usr/local/apps/nginx/ --user=nginx --group=nginx --with-http_stub_status_module --with-http_gzip_static_module --with-http_flv_module --with-http_mp4_module --with-pcre=/home/workspace/auto_deploy/software/nginx/pcre-8.30 --with-openssl=/home/workspace/auto_deploy/software/nginx/openssl-1.0.1i --add-module=../gnosek-nginx-upstream-fair-a18b409/ --add-module=../ngx_cache_purge-2.1 --with-http_ssl_module --add-module=../lua-nginx-module-0.10.1/ --add-module=../ngx_devel_kit-0.2.18/

 可以看到我們新增加的兩個模塊,已經被編譯進nginx里面去了。


四、驗證配置指令和輸出

 修改nginx.conf配置文件,加入下面指令:

location / { 
    content_by_lua 'ngx.say("hello world!")'; 
}

 重啟nginx,用curl測試

# 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!


五、安裝遇到的問題:

 

    錯誤提示:

make[1]: *** [/apps/lib/openssl-1.0.1i/.openssl/include/openssl/ssl.h] Error 2


 修改nginx源代碼里面的一個文件內容。

# vim nginx-1.6.1/auto/lib/openssl/conf
CORE_INCS="$CORE_INCS $OPENSSL/.openssl/include"
CORE_DEPS="$CORE_DEPS $OPENSSL/.openssl/include/openssl/ssl.h"
CORE_LIBS="$CORE_LIBS $OPENSSL/.openssl/lib/libssl.a"
CORE_LIBS="$CORE_LIBS $OPENSSL/.openssl/lib/libcrypto.a"
CORE_LIBS="$CORE_LIBS $NGX_LIBDL"

 替換成

CORE_INCS="$CORE_INCS $OPENSSL/include"
CORE_DEPS="$CORE_DEPS $OPENSSL/include/openssl/ssl.h"
CORE_LIBS="$CORE_LIBS $OPENSSL/.openssl/lib/libssl.a"
CORE_LIBS="$CORE_LIBS $OPENSSL/.openssl/lib/libcrypto.a"
CORE_LIBS="$CORE_LIBS $NGX_LIBDL"

 

 重新編譯安裝即可!!!



 推薦閱讀:

  • 玩轉 Nginx 之:使用 Lua 擴展 Nginx 功能

  • 讓Nginx支持Lua

向AI問一下細節

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

AI

永登县| 东源县| 花莲市| 奉贤区| 广丰县| 泰州市| 吉林市| 桐乡市| 镇安县| 南雄市| 乐清市| 西盟| 芦溪县| 肃南| 怀柔区| 林周县| 鄂尔多斯市| 宾阳县| 土默特左旗| 抚松县| 高唐县| 壤塘县| 彭阳县| 牙克石市| 五华县| 县级市| 手游| 左权县| 连云港市| 高密市| 化州市| 富民县| 夹江县| 花垣县| 滨海县| 镇沅| 南雄市| 牙克石市| 额敏县| 荥阳市| 宁武县|