comparison src/http/ngx_http.c @ 394:05981f639d21 NGINX_0_7_9

nginx 0.7.9 *) Change: now ngx_http_charset_module works by default with following MIME types: text/html, text/css, text/xml, text/plain, text/vnd.wap.wml, application/x-javascript, and application/rss+xml. *) Feature: the "charset_types" and "addition_types" directives. *) Feature: now the "gzip_types", "ssi_types", and "sub_filter_types" directives use hash. *) Feature: the ngx_cpp_test_module. *) Feature: the "expires" directive supports daily time. *) Feature: the ngx_http_xslt_module improvements and bug fixing. Thanks to Denis F. Latypoff and Maxim Dounin. *) Bugfix: the "log_not_found" directive did not work for index files tests. *) Bugfix: HTTPS connections might hang, if kqueue, epoll, rtsig, or eventport methods were used; the bug had appeared in 0.7.7. *) Bugfix: if the "server_name", "valid_referers", and "map" directives used an "*.domain.tld" wildcard and exact name "domain.tld" was not set, then the exact name was matched by the wildcard; the bugs had appeared in 0.3.18.
author Igor Sysoev <http://sysoev.ru>
date Tue, 12 Aug 2008 00:00:00 +0400
parents 34fb3a573548
children 349057ecf4d5
comparison
equal deleted inserted replaced
393:040b8c84d040 394:05981f639d21
57 57
58 ngx_int_t (*ngx_http_top_header_filter) (ngx_http_request_t *r); 58 ngx_int_t (*ngx_http_top_header_filter) (ngx_http_request_t *r);
59 ngx_int_t (*ngx_http_top_body_filter) (ngx_http_request_t *r, ngx_chain_t *ch); 59 ngx_int_t (*ngx_http_top_body_filter) (ngx_http_request_t *r, ngx_chain_t *ch);
60 60
61 61
62 ngx_str_t ngx_http_html_default_types[] = {
63 ngx_string("text/html"),
64 ngx_null_string
65 };
66
67
62 static ngx_command_t ngx_http_commands[] = { 68 static ngx_command_t ngx_http_commands[] = {
63 69
64 { ngx_string("http"), 70 { ngx_string("http"),
65 NGX_MAIN_CONF|NGX_CONF_BLOCK|NGX_CONF_NOARGS, 71 NGX_MAIN_CONF|NGX_CONF_BLOCK|NGX_CONF_NOARGS,
66 ngx_http_block, 72 ngx_http_block,