Skip to content

Instantly share code, notes, and snippets.

@yyamano
Last active June 13, 2017 07:04
Show Gist options
  • Save yyamano/b4fe29ed11979b58c2f434ce7a2e3dfb to your computer and use it in GitHub Desktop.
Save yyamano/b4fe29ed11979b58c2f434ce7a2e3dfb to your computer and use it in GitHub Desktop.
ngx_http_core_access_phase(ngx_http_request_t *r, ngx_http_phase_handler_t *ph) の中で、サブリクエストの場合、ハンドラをスキップしている。
if (r != r->main) {
r->phase_handler = ph->next;
return NGX_AGAIN;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment