nginx-0.0.1-2002-09-16-19:01:44 import
diff --git a/src/http/modules/ngx_http_static_handler.c b/src/http/modules/ngx_http_static_handler.c
index cbe430c..898e577 100644
--- a/src/http/modules/ngx_http_static_handler.c
+++ b/src/http/modules/ngx_http_static_handler.c
@@ -65,7 +65,19 @@
 */
 
     /* 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);