nginx编译安装Lua模块
- nginx:高性能web服务器
- LuaJIT:即采用C语言写的Lua代码的解释器。
- lua-nginx-module (ngx_lua) :可在 Nginx 中嵌入 Lua 语言。让 Nginx 可以支持 Lua 强大的语法。
- NDK(nginx developmentkit):模块是一个拓展nginx服务器核心功能的模块,第三方模块开发可以基于它来快速实现。NDK提供函数和宏处理一些基本任务,减轻第三方模块开发的代码量
开发者如果要依赖这个模块做开发,需要将这个模块一并参与nginx编译,同时需要在自己的模块配置中声明所需要使用的特性。
1.获取Nginx、LuaJIT、lua-nginx-module、ngx_devel_kit源码文件
wget http://nginx.org/download/nginx-1.17.5.tar.gz
wget http://luajit.org/download/LuaJIT-2.1.0-beta3.tar.gz
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.13.tar.gz
2.创建放置源码目录与nginx目录
mkdir /opt/makecode
mkdir /etc/nginx
3.解压源码文件
tar xvf LuaJIT-2.1.0-beta3.tar.gz -C /opt/
tar xvf nginx-1.17.5.tar.gz -C /opt/
tar xvf v0.10.13.tar.gz -C /opt/
tar xvf v0.3.0.tar.gz -C /opt/
4.切换目录并对解压目录改名
cd /opt
mv nginx-1.17.5/ /opt/nginx
mv LuaJIT-2.1.0-beta3/ /opt/luaJIT
mv lua-nginx-module-0.10.13/ /etc/nginx/lua-nginx-module
mv ngx_devel_kit-0.3.0/ /etc/nginx/ngx_devel_kit
5.编译安装luaJIT
cd /opt/luaJIT
make PREFIX=/opt/luajit
make install PREFIX=/opt/luajit
6.定义luaJIT环境变量并刷新环境变量文件
echo -e 'export LUAJIT_LIB=/opt/luajit/lib\nexport LUAJIT_INC=/opt/luajit/include/luajit-2.1' > /etc/profile.d/nginx.sh
. /etc/profile.d/nginx.sh
7.安装nginx编译时需要的依赖
yum -y install pcre-devel opensslo penssl-devel.x86_64
8.编译安装nginx
cd /opt/nginx
./configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/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-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -pie' --add-module=/etc/nginx/lua-nginx-module --add-module=/etc/nginx/ngx_devel_kit
make -j2
make install
9.查看编译状态
nginx -V