1

我使用 nginx 作为反向代理,我一直在尝试编写一个 nginx 模块来处理传入的请求,如果它喜欢请求中存在的某些 HTTP 标头,nginx 将允许请求到达受保护的服务器(在nginx 代理)。现在,我已经成功实现了标头处理,但我一直在弄清楚如何将请求转发到服务器。

到目前为止,我已经研究了子请求,但我尝试的代码(或从现有模块复制,例如ngx_http_addition_filter_module!)似乎都不起作用。要么我陷入一个循环,其中有 100 多个子请求被触发,要么什么都没有发生。我一直在尝试使用的代码:

static ngx_int_t ngx_http_my_own_handler(ngx_http_request_t *r)
{
    // some request processing here
    // ...


    // now issue the sub-request
    ngx_http_request_t *sr;
    ngx_http_post_subrequest_t *ps;

    ps = ngx_palloc(r->pool, sizeof(ngx_http_post_subrequest_t));
    if (ps == NULL) {
        return NGX_ERROR;
    }

    ps->handler = ngx_http_foo_subrequest_done;
    ps->data = "foo";

    // re-use the request URI to try to forward it
    return ngx_http_subrequest(r, &r->uri, &r->args, &sr, ps, NGX_HTTP_SUBREQUEST_CLONE);
}

处理ngx_http_foo_subrequest_done程序如下所示:

ngx_int_t ngx_http_foo_subrequest_done(ngx_http_request_t *r, void *data, ngx_int_t rc)
{
    char *msg = (char *) data;
    ngx_log_error(NGX_LOG_INFO, r->connection->log, 0, "done subrequest r:%p msg:%s rc:%i", r, msg, rc);
    return rc;
}

请指教我做错了什么!

4

1 回答 1

2

代理没有像你期望的那样工作......我也很惊讶!

URI 需要更改为与location /...配置文件中的 a 对应的字符串。然后proxy_...定义将包括真正的完整目的地。

由于路径是变量中的转换,因此您可以包含域名。例如,您的 URI 可能是:

http://example.com/images/bunny.png

在您的模块中,将其转换为如下路径:

/example.com/images/bunny.png

然后在你的 nginx.conf 中,包含一个位置:

location /example.com {
    proxy_pass http://example.com;
}

正如我所提到的,您可以将该example.com部分设为变量并在您的proxy_pass. 对于只有 1 到 5 个,使用自己的location定义处理每个可能更容易。

于 2019-03-27T07:30:55.193 回答