tell nginx to not process further handlers

This commit is contained in:
simon987 2020-05-25 21:59:11 -04:00
parent d8f7f5e001
commit e1f72441b2

View File

@ -235,7 +235,8 @@ int serve_challenge(ngx_http_request_t *r, const char *challenge, const char *ht
r->headers_out.content_length_n = size;
ngx_http_send_header(r);
return ngx_http_output_filter(r, &out);
ngx_http_output_filter(r, &out);
return NGX_DONE;
}