aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-08-12 13:11:36 +0000
committerIgor Sysoev <igor@sysoev.ru>2008-08-12 13:11:36 +0000
commit390abe0772d9942d953b40fd4cca18b056348bda (patch)
treec626c7b5d4e33ed860af78ddb4b50087a69aed43 /src/http/ngx_http.c
parenta408b2ba2d2b4d4edae8db788269b62c41bc2cc9 (diff)
downloadnginx-390abe0772d9942d953b40fd4cca18b056348bda.tar.gz
nginx-390abe0772d9942d953b40fd4cca18b056348bda.zip
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"),