文件名称:lua-resty-limits:基于openresty每秒或每分钟nginx限制请求
文件大小:4KB
文件格式:ZIP
更新时间:2024-06-13 11:55:19
Lua
lua-resty-limits 基于openresty每秒钟限制nginx请求 使用示例 local limits = require ( " resty.iresty_limits " ) local limits = limits. new () -- the rate is 80bytes/seconds, you can input 80K(means 80KB/sec) too. limits: rate ( " 80 " ) -- ngx. say ( " check request is allowed: " , limits: reqs_per_range (ngx. var . binary_remote_addr , ngx. var . uri , 1 , 2 )) 由提供 如有任何疑问,请告诉我。
【文件预览】:
lua-resty-limits-master
----.gitignore(332B)
----LICENSE(1KB)
----resty()
--------iresty_limits.lua(592B)
----README.md(458B)
----conf()
--------nginx.conf(498B)
----lua()
--------test.lua(281B)