mirror of
https://github.com/nginx/nginx.git
synced 2024-12-03 04:39:00 +08:00
Fixed setting of content type in some cases.
This fixes content type set in stub_status and autoindex responses to be usable in content type checks made by filter modules, such as charset and sub filters.
This commit is contained in:
parent
2b1156d101
commit
2539ce036f
@ -233,6 +233,7 @@ ngx_http_autoindex_handler(ngx_http_request_t *r)
|
||||
r->headers_out.status = NGX_HTTP_OK;
|
||||
r->headers_out.content_type_len = sizeof("text/html") - 1;
|
||||
ngx_str_set(&r->headers_out.content_type, "text/html");
|
||||
r->headers_out.content_type_lowcase = NULL;
|
||||
|
||||
rc = ngx_http_send_header(r);
|
||||
|
||||
|
@ -572,6 +572,7 @@ ngx_http_image_json(ngx_http_request_t *r, ngx_http_image_filter_ctx_t *ctx)
|
||||
ngx_http_clean_header(r);
|
||||
|
||||
r->headers_out.status = NGX_HTTP_OK;
|
||||
r->headers_out.content_type_len = sizeof("application/json") - 1;
|
||||
ngx_str_set(&r->headers_out.content_type, "application/json");
|
||||
r->headers_out.content_type_lowcase = NULL;
|
||||
|
||||
|
@ -98,7 +98,9 @@ static ngx_int_t ngx_http_status_handler(ngx_http_request_t *r)
|
||||
return rc;
|
||||
}
|
||||
|
||||
r->headers_out.content_type_len = sizeof("text/plain") - 1;
|
||||
ngx_str_set(&r->headers_out.content_type, "text/plain");
|
||||
r->headers_out.content_type_lowcase = NULL;
|
||||
|
||||
if (r->method == NGX_HTTP_HEAD) {
|
||||
r->headers_out.status = NGX_HTTP_OK;
|
||||
|
Loading…
Reference in New Issue
Block a user