私は、着信要求に対してクッキーを読み書きできるNGINXフィルタモジュールをコーディングしています。特定のCookieが正しく設定されていない場合(つまり、認証Cookie)、送信ヘッダーのステータスが適切なエラーコードに設定されます。これはEvan Miller's tutorialの指示に従ってうまく動作します。私が作業をしようとしている次の部分は、エラー応答が出たときに本体の応答テキストを挿入/置き換えることができるようにボディフィルタを呼び出させることです。私は再び本体のフィルターにEvan Miller's tutorialを追ってきました。ここに私の設定です:NGINXヘッダとボディフィルタモジュール
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 /設定コンパイルオプションなどのように、私が有効にしなければならないものがあるかどうか疑問に思っています。
何か助けていただければ幸いです。
使用しているNGINXのバージョンは何ですか?どのような./configureパラメータを使用しましたか?安定したバージョンのbody filterモジュールを実行しようとしている同様の問題がありました。その後、devバージョン(1.3.5)を試してみました。 – Alex