添加epel源
nginx
rpm -ivh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm yum install readline readline-devel zlib zlib-devel
下面安裝 lua瀏覽器
tar xvf LuaJIT-2.0.3.tar.gz cd LuaJIT-2.0.3/ make make install ln -s /usr/local/lib/libluajit-5.1.so.2 /lib64/libluajit-5.1.so.2 echo "export LUAJIT_LIB=/usr/local/lib" >> /etc/profile export "LUAJIT_INC=/usr/local/include/luajit-2.0/" >> /etc/profile
編譯opensslbash
wget http://www.openssl.org/source/openssl-1.0.1g.tar.gz tar zxf openssl-1.0.1g.tar.gz cd openssl-1.0.1g ./config shared zlib make && make install
接下來就能夠編譯 tengine 了ide
yum install -y pcre-devel pcre libxml2 libxml2-devel libxslt-devel gd-devel geoip geoip-devel cd tengine-2.1.2 ./configure --with-cc-opt='-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2' --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-debug --with-pcre-jit --with-ipv6 --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_addition_module --with-http_dav_module --with-http_geoip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_sub_module --with-http_xslt_module --with-http_concat_module --with-http_lua_module --with-luajit-lib=/usr/local/lib/ --with-luajit-inc=/usr/local/include/luajit-2.0/ --with-lua-inc=/usr/local/include/luajit-2.0/ --with-lua-lib=/usr/local/lib/ --with-ld-opt=-Wl,-rpath,/usr/local/lib --with-openssl=/root/openssl-1.0.1g make && make install cp /usr/share/nginx/sbin/nginx /usr/sbin/nginx
測試:修改/etc/nginx/nginx.conf測試
location /lua_content {
default_type 'text/plain';
content_by_lua "ngx.say('Hello,world!')";
}lua
瀏覽器訪問 http://x.x.x.x/lua_content
spa