diff options
Diffstat (limited to 'src/http/modules/ngx_http_static_handler.c')
-rw-r--r-- | src/http/modules/ngx_http_static_handler.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_static_handler.c b/src/http/modules/ngx_http_static_handler.c index cbe430cf2..898e57757 100644 --- a/src/http/modules/ngx_http_static_handler.c +++ b/src/http/modules/ngx_http_static_handler.c @@ -65,7 +65,19 @@ int ngx_http_static_handler(ngx_http_request_t *r) */ /* STUB */ - r->headers_out->content_type = "text/html"; + if (r->exten) { + if (strcasecmp(r->exten, "html") == 0) + r->headers_out->content_type = "text/html; charset=koi8-r"; + else if (strcasecmp(r->exten, "gif") == 0) + r->headers_out->content_type = "image/gif"; + else if (strcasecmp(r->exten, "jpg") == 0) + r->headers_out->content_type = "image/jpeg"; + else if (strcasecmp(r->exten, "pdf") == 0) + r->headers_out->content_type = "application/pdf"; + + } else { + r->headers_out->content_type = "text/html; charset=koi8-r"; + } /* STUB */ rc = ngx_http_header_filter(r); |