From 390abe0772d9942d953b40fd4cca18b056348bda Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Tue, 12 Aug 2008 13:11:36 +0000 Subject: use hash in gzip_types, ssi_types, and sub_filter_types --- src/http/ngx_http.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/http/ngx_http.c') 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"), -- cgit