Nginx与Lua

#充分结合Nginx的并发处理epoll优势和Lua轻量级实现简单的功能切高并发场景
#
#1.安装Lua解释器
#yum install lua
#2.运行
#交互式,脚本式

#lua基本语法
#1.注释
#行注释
#- 注释
#块注释
#[[
#    块注释
#]]

#2.变量
#
#3.while循环
#while num<=100 do
#sum=sum+num
#num=num+1
#end
#
#4.for循环
#for i=1,100 do
#sum=sum+i
#end
#
#5.条件语句
#if age==40 then print("40")
#elseif age>60 then print("60")
#else print("other")
#end
#
#6.其他
#~= 不等于
#字符串拼接..
#io库的分别从stdin和stdout读写的read和write函数

#Nginx+Lua环境
#1.LuaJIT
#2.ngx_devel_kit和lua-nginx-module
#3.重新编写nginx
#一、安装LUA环境及相关库
#
#官方网站:https://github.com/openresty/lua-nginx-module
#
#1、LuaJIT
#
#wget http://luajit.org/download/LuaJIT-2.0.2.tar.gz
#
#make install PREFIX=/usr/local/LuaJIT
#
#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
#执行解压,后按照如下方式编译:
#./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_sta#tic_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 --w#ith-cc-o#pt='-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 -pi#e' #--add-module=/opt/download/ngx_devel_kit-0.3.0 --add-module=/opt/download/lua-nginx-module-0.10.9rc7#
#make -j 4 && make install#
#
#4、加载lua库,加入到ld.so.conf文件
#echo "/usr/local/LuaJIT/lib" >> /etc/ld.so.conf
#然后执行如下命令:
#ldconfig


#Nginx调用lua模块指令
#Nginx的可插拔模块化加载执行
#set_by_lua、set_by_lua_file         设置nginx变量,可实现复杂的赋值逻辑
#access_by_lua、access_by_lua_file   请求访问阶段处理,用于访问控制
#content_by_lua、content_by_lua_file 内容处理器、接收请求处理并输出响应

#Nginx Lua API
#ngx.var                  获取请求头
#ngx.req.get_headers      获取请求头
#ngx.req.get_uri_args     获取url请求参数
#ngx.redirect             重定向
#ngx.print                输出响应内容体
#ngx.say                  同ngx.print,但是会最后输出一个换行符          
#ngx.header               输出响应头
#...


#灰度发布
#1.用户的信息cookie等信息区别
#2.根据用户的ip地址


 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值