Nginx+Lua開發環境
1、下載LuaJIT解釋器
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 install PREFIX=/usr/local/LuaJIT
/etc/profile 文件中加入環境變量
export LUAJIT_LIB=/usr/local/LuaJIT/lib
export LUAJIT_INC=/usr/local/LuaJIT/include/luajit-2.0
2、下載ngx_devel_kit和lua-nginx-module
cd /opt/download
wget https://github.com/simpl/ngx_devel_kit/archive/v0.3.0.tar.gz
wget https://github.com/openresty/lua-nginx-module/archive/v0.10.9rc7.tar.gz
分別解壓,不需要安裝
3、重新編譯nginx
cd /opt/download
wget http://nginx.org/download/nginx-1.12.1.tar.gz
執行解壓
cd到nginx目錄下按照如下方式編譯:
# 最后兩個add是之前解壓的ngx_devel_kit和lua-nginx-module
./configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables -fPIC' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -pie' --add-module=/opt/download/ngx_devel_kit-0.3.0 --add-module=/opt/download/lua-nginx-module-0.10.9rc7
如果編譯的時候報以下錯誤
執行:yum -y install openssl openssl-devel成功之后再編譯(這里提示缺什么就yum -y install)
再次執行編譯命令編譯成功
make一下 :make -j 4 && make install,會覆蓋之前yum下載的nginx
4、加載lua庫,加入到ld.so.conf文件
執行命令:echo "/usr/local/LuaJIT/lib" >> /etc/ld.so.conf
然后執行:ldconfig
驗證:
執行nginx -V查看參數
測試Lua
cd /etc/nginx/conf.d/default.conf 加入下面的location
location /hello_lua {
default_type 'text/plain';
content_by_lua 'ngx.say("hello, lua")';
}
重啟nginx:
nginx -tc /etc/nginx/nginx.conf 檢查錯誤
nginx -s reload -c /etc/nginx/nginx.conf 重新加載
執行reload的時候報錯:nginx: [error] invalid PID number "" in "/var/run/nginx.pid"
解決辦法:nginx.conf文件的路徑可以從nginx -t的返回中找到
先執行:nginx -c /etc/nginx/nginx.conf
再執行:nginx -s reload
訪問192.168.1.141/hello_lua會出現”hello, lua”表示安裝成功
Nginx調用Lua模塊指令
Nginx的可插拔模塊化加載執行,共11個處理階段
Nginx Lua API
這里列出一些常用的API,更多的API可以官網查看