6

着信リクエストの Cookie を読み書きできる NGINX フィルター モジュールをコーディングしています。特定の Cookie (認証 Cookie など) が正しく設定されていない場合、送信ヘッダーのステータスが適切なエラー コードに設定されます。これは、 Evan Miller のチュートリアルの指示に従って問題なく動作します。私が作業を開始しようとしている次の部分 (まだまだ行っていません) は、エラー応答が発生したときに本文の応答テキストを挿入/置換できるように、本文フィルターを呼び出すことです。私はボディ フィルターに関するEvan Miller のチュートリアルに再び従いましたが、私の人生ではこれを機能させることはできません。これが私のセットアップです:

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コンパイルオプションなど、有効にする必要があるものとはまったく異なるものがあるかどうか疑問に思っています.

どんな助けでも大歓迎です。

4

1 に答える 1

0

Evan は http コンテンツの長さを修正しないことに注意してくださいngx_http_<module_name>_header_filter()

http content length( r->headers_out.content_length_n) を追加しないと、リクエストの最後に挿入されたテキストが nginx-1.2.7 安定版から出力されません。

また、フッター フィルター モジュールも表示されます。

于 2013-03-20T11:38:03.927 に答える