安装luajit2.0.2
wget http://luajit.org/download/LuaJIT-2.0.0-beta9.tar.gz
tar zxvf LuaJIT-2.0.0-beta9 .tar.gz
cd LuaJIT-2.0.0-beta9
make
sudo make install PREFIX=/usr/local/luajit
安装ngx -devel-kit, lua-nginx-module, echo-nginx-module
cd /usr/local/
git clone https://github.com/simpl/ngx_devel_kit
git clone https://github.com/agentzh/echo-nginx-module
git clone https://github.com/chaoslawful/lua-nginx-module
luajit 环境变weight
export LUAJIT_LIB=/usr/local/luajit/lib
export LUAJIT_INC=/usr/local/luajit/include/luajit-2.0
안전한 nginx
wget nginx.org/download/nginx-1.6.3.tar.gz
tar zxvf nginx-1.6.3.tar.gz
cd nginx-1.6. 3 ./configure --prefix=/usr/local/nginx --with-ld-opt="-Wl,-rpath,$LUAJITLIB" --add-module=/usr/local/ngxdevel_kit --add-module=/usr/local/echo-nginx-module --add-module=/usr/local/lua-nginx-module
make -j2
make install
验证/usr/local/nginx -V
安装redis-lua
git clone https://github.com/nrk/redis-lua
cp redis-lua/src/redis.lua /usr/local/share/lua/5.1/redis.lua
안전 lua-socket2.0.2
wget http://luaforge.net/frs/download.php/2664/luasocket-2.0.2.tar.gz
tar zxvf luasocket-2.0.2 .tar.gz
cd luasocket-2.0.2
vim config
LUAINC=-I/usr/local/luajit/lib LUAINC=-I/usr/local/luajit/include/luajit-2.0
make
make install
redis yum redis 설치
以上就介绍了nginx+lua+redis 보안, 包括了방식의 内容, 希望对PHP教程有兴趣的朋友有所帮助。