Nginx无法使用lua插件

时间:2016-05-10 00:22:38

标签: nginx lua openresty

我已将nginx设置为代理服务器。它基本上应该将HTTP URL转发到特定的IP地址。以下是我的配置

worker_processes  1;
error_log logs/error.log;
events {
    worker_connections 1024;
}
http {
server {
        listen 8080;
        location ~ ^/db/([-_a-zA-Z0-9/]+)/series {
set $token $1 ;
            set $upstream1 " ";
            content_by_lua 'length = string.len(ngx.var.token)
                if length < 8 then 
                    ngx.say("Invalid token (less than 8 characters)")
                    return
                end
                local count = 0
                for i=1,8 do 
                    count = count + string.byte(ngx.var.token,i)
                end
              in_server = {
                    [0] = "10.0.0.1:8086",
                    [1] = "10.0.0.2:8086",
                    [2] = "10.0.0.3:8086",
                    [3] = "10.0.0.4:8086",
                    [4] = "10.0.0.5:8086",
                    [5] = "10.0.0.6:8086",
                    [6] = "10.0.0.7:8086",
                    [7] = "10.0.0.8:8086" 
            }
            ngx.var.upstream1 = in_server[count%7]
';
            proxy_pass http://$upstream1;
        }

    }
}

根据令牌类型将上游变量设置为IP地址。逻辑是合理的,我已经分别在lua中测试过了。但每次我查询nginx服务器时,都会收到以下错误:

2016/05/09 17:20:20 [error] 32680#0: *1 no resolver defined to resolve  , client: 127.0.0.1, server: , request: "GET /db/rustytoken/series?&q=select%20%2A%20from%20foo%20limit%201 HTTP/1.1", host: "localhost:8080"

我不确定,为什么需要解析器如果发送直接IP地址。无论如何,我在位置指令

中添加了以下内容
resolver 127.0.0.1 

并安装了dnsmasq来解析域名。它仍然无法。我得到以下错误。

2016/05/09 17:14:22 [error] 32030#0: *1   could not be resolved (3: Host not found), client: 127.0.0.1, server: , request: "GET /db/rustytoken/series?q=select%20%2A%20from%20foo%20limit%201 HTTP/1.1", host: "localhost:8080"

2 个答案:

答案 0 :(得分:1)

您应该使用“rewrite_by_lua”而不是“content_by_lua” 因为你设置了$ upstream1“”,所以你必须重写它。

答案 1 :(得分:0)

你应该使用https://github.com/openresty/lua-nginx-module#balancer_by_lua_block 而不是content_by_lua。 请参阅此处的一些示例https://github.com/openresty/lua-resty-core/blob/master/lib/ngx/balancer.md

Nginx配置不是线性执行的。 这是我所知道的最好的教程 - http://openresty.org/download/agentzh-nginx-tutorials-en.html

更新

另一种可能的解决方案:

set_by_lua_block $upstream1 {
       length = string.len(ngx.var.token)
       if length < 8 then 
             -- cannot use this API here, you should add error processing
             --ngx.say("Invalid token (less than 8 characters)")
             return
       end
       local count = 0
       for i=1,8 do 
            count = count + string.byte(ngx.var.token,i)
       end
       in_server = {
            [0] = "10.0.0.1:8086",
            [1] = "10.0.0.2:8086",
            [2] = "10.0.0.3:8086",
            [3] = "10.0.0.4:8086",
            [4] = "10.0.0.5:8086",
            [5] = "10.0.0.6:8086",
            [6] = "10.0.0.7:8086",
            [7] = "10.0.0.8:8086" 
       }
       return in_server[count%7]
}