NGINX标题和正文滤波器模块(NGINX Header and Body Filter Modul

2019-09-18 06:05发布

我一直在编码的NGINX过滤器模块可以为传入的请求读/写的cookie。 如果没有正确地设置一个特定的cookie(即验证cookie),它将设置传出头状态到适当的错误代码。 这工作每方向精细埃文米勒的教程 。 我想接下来的部分就此开始工作(并没有到目前为止)是具有体过滤器被调用,所以我可以插入/替换体响应文本中遇到的错误响应时。 我随后再次埃文·米勒的教程在体过滤器,我不能为我的生命得到这个工作。 这里是我的设置:

static ngx_http_output_header_filter_pt ngx_http_next_header_filter;
static ngx_http_output_body_filter_pt ngx_http_next_body_filter;
...
...


static ngx_http_module_t ngx_http_source_cookie_module_ctx = {
    NULL,                             /* preconfiguration */
    ngx_http_source_cookie_init,             /* postconfiguration */

    NULL,                             /* create main configuration */
    NULL,                             /* init main configuration */

    NULL,                             /* create server configuration */
    NULL,                             /* merge server configuration */

    ngx_http_source_cookie_create_loc_conf,  /* create location configuration */
    ngx_http_source_cookie_merge_loc_conf    /* merge location configuration */
};

ngx_module_t ngx_http_source_cookie_module = {
    NGX_MODULE_V1,
    &ngx_http_source_cookie_module_ctx,      /* module context */
    ngx_http_source_cookie_commands,         /* module directives */
    NGX_HTTP_MODULE,                  /* module type */
    NULL,                             /* init master */
    NULL,                             /* init module */
    NULL,                             /* init process */
    NULL,                             /* init thread */
    NULL,                             /* exit thread */
    NULL,                             /* exit process */
    NULL,                             /* exit master */
    NGX_MODULE_V1_PADDING
};
/*--------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------*/
static ngx_int_t
ngx_http_source_cookie_header_filter(ngx_http_request_t *r)
{
   // this gets invoked
   ...
}

/*--------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------*/
static ngx_int_t
ngx_http_body_filter(ngx_http_request_t *r, ngx_chain_t *in)
{
   // this never get invoked
   ...
}

/*--------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------*/
static ngx_int_t
ngx_http_source_cookie_init(ngx_conf_t *cf)
{
    // registering of my filters

    ngx_http_next_header_filter = ngx_http_top_header_filter;
    ngx_http_top_header_filter = ngx_http_source_cookie_header_filter;

    ngx_http_next_body_filter = ngx_http_top_body_filter;
    ngx_http_top_body_filter = ngx_http_body_filter;

    return NGX_OK;
}

这是我的基本设置,而据我所知,这是对所有的例子/教程我遇到点。 我不知道是否有完全不同了我需要启用......像NGINX配置选项,NGINX的./configure编译选项等。

任何帮助是极大的赞赏。

Answer 1:

我注意到,在埃文犯规修复HTTP内容长度ngx_http_<module_name>_header_filter()

如果我不添加http内容长度( r->headers_out.content_length_n ),所插入的文本的请求的结束不会从nginx的-1.2.7稳定的输出。

你还可以看到尾过滤模块 。



文章来源: NGINX Header and Body Filter Modules