ngx_lua常用变量参数

ngx_lua常用变量参数,第1张

概述#Ngx指令 lua_code_cache on | off; 作用:打开或关闭 Lua 代码缓存,影响以下指令: set_by_lua_file , content_by_lua_file, rewrite_by_lua_file, access_by_lua_file 及强制加载或者reload Lua 模块等.缓存开启时修改LUA代码需要重启nginx,不开启时则不用。开发阶段一般关闭缓存。

#Ngx指令
lua_code_cache on | off;
作用:打开或关闭 Lua 代码缓存,影响以下指令: set_by_lua_file,content_by_lua_file,rewrite_by_lua_file,access_by_lua_file 及强制加载或者reload Lua 模块等.缓存开启时修改LUA代码需要重启Nginx,不开启时则不用。开发阶段一般关闭缓存。
作用域:main,server,location,location if

lua_regex_cache_max_entrIEs 1024;
作用:未知(貌似是限定缓存正则表达式处理结果的最大数量)

lua_package_path .../path... ;
作用:设置用lua代码写的扩展库路径。
例:lua_package_path '/foo/bar/?.lua;/blah/?.lua;;';

lua_package_cpath '/bar/baz/?.so;/blah/blah/?.so;;';
作用:设置C扩展的lua库路径。

set_by_lua $var '<lua-script>' [$arg1 $arg2];
set_by_lua_file $var <path-to-lua-script-file> [$arg1 $arg2 ...];
作用:设置一个Nginx变量,变量值从lua脚本里运算由return返回,可以实现复杂的赋值逻辑;此处是阻塞的,Lua代码要做到非常快.
另外可以将已有的ngx变量当作参数传进Lua脚本里去,由ngx.arg[1],ngx.arg[2]等方式访问。
作用域:main,server if,location if
处理阶段:rewrite

content_by_lua '<lua script>';
content_by_lua_file luafile;
作用域:location,location if
说明:内容处理器,接收请求处理并输出响应,content_by_lua直接在Nginx配置文件里编写较短Lua代码后者使用lua文件。

rewrite_by_lua '<lua script>'
rewrite_by_lua_file lua_file;
作用域:http,location if
执行内部URL重写或者外部重定向,典型的如伪静态化的URL重写。其默认执行在rewrite处理阶段的最后.
注意,在使用rewrite_by_lua时,开启rewrite_log on;后也看不到相应的rewrite log。

access_by_lua 'lua code';
access_by_lua_file lua_file.lua;
作用:用于访问控制,比如我们只允许内网ip访问,可以使用如下形式。
access_by_lua '
if ngx.req.get_uri_args()["token"] ~= "123" then  
  return ngx.exit(403)  
end ';
作用域:http,location if

header_filter_by_lua 'lua code';
header_filter_by_lua_file path_file.lua;
作用:设置header 和 cookie;

lua_need_request_body on|off;
作用:是否读请求体,跟ngx.req.read_body()函数作用类似,但官方不推荐使用此方法。

lua_shared_dict shared_data 10m;
作用:设置一个共享全局变量表,在所有worker进程间共享。在lua脚本中可以如下访问它:
例:local shared_data = ngx.shared.shared_data 
10m 不知是什么意思。

init_by_lua 'lua code';
init_by_lua_file lua_file.lua;
作用域:http
说明:ginx Master进程加载配置时执行;通常用于初始化全局配置/预加载Lua模块

init_worker_by_lua 'lua code';
init_worker_by_lua_file luafile.lua;
作用域:http

说明:每个Nginx Worker进程启动时调用的计时器,如果Master进程不允许则只会在init_by_lua之后调用;通常用于定时拉取配置/数据,或者后端服务的健康检查。

######################

  方法和常量 
######################

[plain] view plaincopy

ngx.arg[index]              #ngx指令参数,当这个变量在set_by_lua或者set_by_lua_file内使用的时候是只读的,指的是在配置指令输入的参数.  ngx.var.varname             #读写Nginx变量的值,最好在lua脚本里缓存变量值,避免在当前请求的生命周期内内存的泄漏  ngx.config.ngx_lua_version  #当前ngx_lua模块版本号  ngx.config.Nginx_version    #Nginx版本  ngx.worker.exiting          #当前worker进程是否正在关闭  ngx.worker.pID              #当前worker进程的PID  ngx.config.Nginx_configure  #编译时的./configure命令选项  ngx.config.prefix           #编译时的prefix选项    core constans:              #ngx_lua 核心常量      ngx.OK (0)      ngx.ERROR (-1)      ngx.AGAIN (-2)      ngx.DONE (-4)      ngx.DECliNED (-5)      ngx.nil  http method constans:       #经常在ngx.location.catpure和ngx.location.capture_multi方法中被调用.      ngx.http_GET      ngx.http_head      ngx.http_PUT      ngx.http_POST      ngx.http_DELETE      ngx.http_OPTIONS        ngx.http_MKCol          ngx.http_copY            ngx.http_MOVE           ngx.http_PROPFIND       ngx.http_PROPPATCH       ngx.http_LOCK       ngx.http_UNLOCK          ngx.http_PATCH         ngx.http_TRACE    http status constans:       #http请求状态常量       ngx.http_OK (200)      ngx.http_CREATED (201)      ngx.http_SPECIAL_RESPONSE (300)      ngx.http_MOVED_PERMANENTLY (301)      ngx.http_MOVED_TEMPORARILY (302)      ngx.http_SEE_OTHER (303)      ngx.http_NOT_MODIFIED (304)      ngx.http_BAD_REQUEST (400)      ngx.http_UNAUTHORIZED (401)      ngx.http_FORBIDDEN (403)      ngx.http_NOT_FOUND (404)      ngx.http_NOT_ALLOWED (405)      ngx.http_GONE (410)      ngx.http_INTERNAL_SERVER_ERROR (500)      ngx.http_METHOD_NOT_IMPLEMENTED (501)      ngx.http_SERVICE_UNAVAILABLE (503)      ngx.http_GATEWAY_TIMEOUT (504)     Nginx log level constants:      #错误日志级别常量 ,这些参数经常在ngx.log方法中被使用.      ngx.STDERR      ngx.EMERG      ngx.ALERT      ngx.CRIT      ngx.ERR      ngx.WARN      ngx.NOTICE      ngx.INFO      ngx.DEBUG    ##################  #API中的方法:  ##################  print()                         #与 ngx.print()方法有区别,print() 相当于ngx.log()  ngx.ctx                         #这是一个lua的table,用于保存ngx上下文的变量,在整个请求的生命周期内都有效,详细参考官方  ngx.location.capture()          #发出一个子请求,详细用法参考官方文档。  ngx.location.capture_multi()    #发出多个子请求,详细用法参考官方文档。  ngx.status                      #读或者写当前请求的相应状态. 必须在输出相应头之前被调用.  ngx.header.header               #访问或设置http header头信息,详细参考官方文档。  ngx.req.set_uri()               #设置当前请求的URI,详细参考官方文档  ngx.set_uri_args(args)          #根据args参数重新定义当前请求的URI参数.  ngx.req.get_uri_args()          #返回一个LUA table,包含当前请求的全部的URL参数  ngx.req.get_post_args()         #返回一个LUA table,包括所有当前请求的POST参数  ngx.req.get_headers()           #返回一个包含当前请求头信息的lua table.  ngx.req.set_header()            #设置当前请求头header某字段值.当前请求的子请求不会受到影响.  ngx.req.read_body()             #在不阻塞ngnix其他事件的情况下同步读取客户端的body信息.[详细]  ngx.req.discard_body()          #明确丢弃客户端请求的body  ngx.req.get_body_data()         #以字符串的形式获得客户端的请求body内容  ngx.req.get_body_file()         #当发送文件请求的时候,获得文件的名字  ngx.req.set_body_data()         #设置客户端请求的BODY  ngx.req.set_body_file()         #通过filename来指定当前请求的file data。  ngx.req.clear_header()          #清求某个请求头  ngx.exec(uri,args)              #执行内部跳转,根据uri和请求参数  ngx.redirect(uri, status)       #执行301或者302的重定向。  ngx.send_headers()              #发送指定的响应头  ngx.headers_sent                #判断头部是否发送给客户端ngx.headers_sent=true  ngx.print(str)                  #发送给客户端的响应页面  ngx.say()                       #作用类似ngx.print,不过say方法输出后会换行  ngx.log(log.level,...)          #写入Nginx日志  ngx.flush()                     #将缓冲区内容输出到页面(刷新响应)  ngx.exit(http-status)           #结束请求并输出状态码  ngx.eof()                       #明确指定关闭结束输出流  ngx.escape_uri()                #URI编码(本函数对逗号,不编码,而PHP的urlencode会编码)  ngx.unescape_uri()              #uri解码  ngx.encode_args(table)          #将tabel解析成url参数  ngx.decode_args(uri)            #将参数字符串编码为一个table  ngx.encode_base64(str)          #BASE64编码  ngx.decode_base64(str)          #BASE64解码  ngx.crc32_short(str)            #字符串的crs32_short哈希  ngx.crc32_long(str)             #字符串的crs32_long哈希  ngx.hmac_sha1(str)              #字符串的hmac_sha1哈希  ngx.md5(str)                    #返回16进制MD5  ngx.md5_bin(str)                #返回2进制MD5  ngx.today()                     #返回当前日期yyyy-mm-dd  ngx.time()                      #返回当前时间戳  ngx.Now()                       #返回当前时间  ngx.update_time()               #刷新后返回  ngx.localtime()                 #返回 yyyy-mm-dd hh:ii:ss  ngx.utctime()                   #返回yyyy-mm-dd hh:ii:ss格式的utc时间  ngx.cookie_time(sec)            #返回用于cookie使用的时间  ngx.http_time(sec)              #返回可用于http header使用的时间        ngx.parse_http_time(str)        #解析http头的时间  ngx.is_subrequest               #是否子请求(值为 true or false)  ngx.re.match(subject,regex,options,ctx)     #ngx正则表达式匹配,详细参考官网  ngx.re.gmatch(subject,opt)            #全局正则匹配  ngx.re.sub(sub,reg,opt)         #匹配和替换(未知)  ngx.re.gsub()                   #未知  ngx.shared.DICT                 #ngx.shared.DICT是一个table 里面存储了所有的全局内存共享变量      ngx.shared.DICT.get        ngx.shared.DICT.get_stale          ngx.shared.DICT.set        ngx.shared.DICT.safe_set           ngx.shared.DICT.add        ngx.shared.DICT.safe_add           ngx.shared.DICT.replace        ngx.shared.DICT.delete         ngx.shared.DICT.incr           ngx.shared.DICT.flush_all          ngx.shared.DICT.flush_expired          ngx.shared.DICT.get_keys  ndk.set_var.DIRECTIVE           #不懂
总结

以上是内存溢出为你收集整理的ngx_lua常用变量参数全部内容,希望文章能够帮你解决ngx_lua常用变量参数所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1243676.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存