使用nginx,lua和redis进行动态路由

我正在尝试使用lua和redis帮助nginx根据URI执行代理。 到目前为止,我成功地将简单的URI(如'/hello')代理到所需的目标。通过将映射保存在redis哈希映射中,类似于:

HGETALL"127.0.0.1:8080"
1"/demo1/test/hello4"
2"example.com/demo1/test/hello4"
3"/hello"
4"example.com/hello"

nginx.conf

worker_processes 2;
error_log logs/error.log info;

events {
    worker_connections 1024;
}

http {
    server {
        listen 8080;

        location / {
            resolver 8.8.4.4;  #使用Google的开放DNS服务器

            set $target'';
            access_by_lua'
                local http_host = ngx.var.http_host

                if not http_host then
                    ngx.log(ngx.ERR,"没有找到http-host")
                    return ngx.exit(400)
                end

                local redis = require "resty.redis"
                local red = redis:new()

                red:set_timeout(1000)-1秒

                local ok,err = red:connect(“127.0.0.1”,6379)
                if not ok then
                    ngx.log(ngx.ERR,"无法连接到redis:",err)
                    return ngx.exit(500)
                end

                local fPath,err = red : hget(http_host,ngx.var.uri)

                if not fPath then
                    ngx.log(ngx.ERR,"无fPath:",err)
                    return ngx.exit(500)
                end

                ngx.var.target = fPath

            ';

            proxy_pass $target;
        }
    }
}

但是,我还想处理动态URI,例如:

user / id / 1 -〉"example.com/user/id/1", user / id / 2 -〉"example.com/user/id/2", user / id / 3 -〉"example.com/user/id/3”, 等等....

```

我不确定如何在redis和lua逻辑中创建键值对来处理id的动态性。 我尝试了查找,但还没有找到正确的方向或一些资源来帮助我搞清楚这个问题。

任何帮助都将非常棒!

原文链接 https://stackoverflow.com/questions/70657542

点赞
stackoverflow用户17237579
stackoverflow用户17237579

如果您想在生产环境中实现这个功能,我建议使用成熟的 API 网关,例如 Apache APISIXKong。要自己实现,也许可以将带有通配符或 Lua 模式的路径存储在 Redis 中,以便稍后匹配原始 URI。应用一些简单的启发式算法将有助于减少检查的范围。

2022-01-11 00:12:53