lua自写限制并发访问模块

注意:ngx.say跟ngx.exit是不可以共存,否则会出现ngx.exit无法正常执行

1.定义lua共享内存20m

lua_shared_dict ceshi 20m;

2.再location / 中编写如下(并发2个以上,返回403):

header_filter_by_lua 'ngx.header.server = "apache/2.4"';    #用于修改request返回头的显示为apache,个人爱好,可以不写这一句
default_type text/html;     # 用于ngx.say输出到页面,如果没有输出到页面,可以不写  
access_by_lua_block{
local ceshi=ngx.shared.ceshi
local key = ngx.var.binary_remote_addr
local total=ceshi:get(key)
if (not total) then
    ceshi:set(key,1,10)
else
    local linshi=ceshi:get(key)
    if (linshi>=2) then
        ngx.exit(403)
    else
        ceshi:incr(key,1)
        ceshi:flush_expired(0)
    end
end
}

 

转载于:https://www.cnblogs.com/weilaibuxiangshuo/p/10906637.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值