Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-08-12 17:11:36 +0400
committerIgor Sysoev <igor@sysoev.ru>2008-08-12 17:11:36 +0400
commit390abe0772d9942d953b40fd4cca18b056348bda (patch)
treec626c7b5d4e33ed860af78ddb4b50087a69aed43 /src/http/ngx_http.c
parenta408b2ba2d2b4d4edae8db788269b62c41bc2cc9 (diff)
use hash in gzip_types, ssi_types, and sub_filter_types
Diffstat (limited to 'src/http/ngx_http.c')
-rw-r--r--src/http/ngx_http.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/http/ngx_http.c b/src/http/ngx_http.c
index 1a5db19bf..024170f45 100644
--- a/src/http/ngx_http.c
+++ b/src/http/ngx_http.c
@@ -59,6 +59,12 @@ ngx_int_t (*ngx_http_top_header_filter) (ngx_http_request_t *r);
ngx_int_t (*ngx_http_top_body_filter) (ngx_http_request_t *r, ngx_chain_t *ch);
+ngx_str_t ngx_http_html_default_types[] = {
+ ngx_string("text/html"),
+ ngx_null_string
+};
+
+
static ngx_command_t ngx_http_commands[] = {
{ ngx_string("http"),