博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx+Lua+Redis 对请求进行限制
阅读量:5874 次
发布时间:2019-06-19

本文共 1851 字,大约阅读时间需要 6 分钟。

hot3.png

Nginx+Lua+Redis 对请求进行限制

 

一、概述

需求:所有访问/myapi/**的请求必须是POST请求,而且根据请求参数过滤不符合规则的非法请求(黑名单), 这些请求一律不转发到后端服务器(Tomcat)

实现思路:通过在Nginx上进行访问限制,通过Lua来灵活实现业务需求,而Redis用于存储黑名单列表。

相关nginx上lua或redis的使用方式可以参考我之前写的一篇文章:

 http://www.cnblogs.com/huligong1234/p/4007103.html

 

二、具体实现

1.lua代码

本例中限制规则包括(post请求,ip地址黑名单,请求参数中imsi,tel值和黑名单)

复制代码

 1 -- access_by_lua_file '/usr/local/lua_test/my_access_limit.lua'; 2 ngx.req.read_body() 3  4 local redis = require "resty.redis" 5 local red = redis.new() 6 red.connect(red, '127.0.0.1', '6379') 7  8 local myIP = ngx.req.get_headers()["X-Real-IP"] 9 if myIP == nil then10    myIP = ngx.req.get_headers()["x_forwarded_for"]11 end12 if myIP == nil then13    myIP = ngx.var.remote_addr14 end15         16 if ngx.re.match(ngx.var.uri,"^(/myapi/).*$") then17     local method = ngx.var.request_method18     if method == 'POST' then19         local args = ngx.req.get_post_args()20         21         local hasIP = red:sismember('black.ip',myIP)22         local hasIMSI = red:sismember('black.imsi',args.imsi)23         local hasTEL = red:sismember('black.tel',args.tel)24         if hasIP==1 or hasIMSI==1 or hasTEL==1 then25             --ngx.say("This is 'Black List' request")26             ngx.exit(ngx.HTTP_FORBIDDEN)27         end28     else29         --ngx.say("This is 'GET' request")30         ngx.exit(ngx.HTTP_FORBIDDEN)31     end32 end

复制代码

 

2.nginx.conf

location / {

root html;
index index.html index.htm;
access_by_lua_file /usr/local/lua_test/my_access_limit.lua;
proxy_pass http://127.0.0.1:8080;
client_max_body_size 1m;
}

 

3.添加黑名单规则数据

#redis-cli sadd black.ip '153.34.118.50'

#redis-cli sadd black.imsi '460123456789' 
#redis-cli sadd black.tel '15888888888'

 

可以通过redis-cli smembers black.imsi 查看列表明细

 

4.验证结果

#curl -d "imsi=460123456789&tel=15800000000" "http://www.mysite.com/myapi/abc"

转载于:https://my.oschina.net/epiclight/blog/425906

你可能感兴趣的文章
构建之法阅读笔记(1)
查看>>
POJ 3663:Costume Party
查看>>
主机连接虚拟机 web服务
查看>>
ajaxSubmit的data属性
查看>>
NetStatusEvent info对象的状态或错误情况的属性
查看>>
linux命令学习
查看>>
Windows下第三方库安装Nuget与Vcpkg
查看>>
URL的截取问题
查看>>
My first post
查看>>
git分支
查看>>
Ehcache 缓存
查看>>
list删除重复元素
查看>>
绘制屏幕时给单选按钮分组
查看>>
TCP/IP协议、DoD模型、OSI模型
查看>>
java开发环境
查看>>
Can't create handler inside thread that has not called Looper.prepare()
查看>>
ADB命令详解
查看>>
urllib模块学习
查看>>
Flume案例Ganglia监控
查看>>
HDU 4001 To Miss Our Children Time DP
查看>>