我使用 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;
}
请指教我做错了什么!