diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-08-28 16:57:48 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-08-28 16:57:48 +0000 |
commit | 3f8dc595000ba4afb60c0fd8c389d7cc8400a148 (patch) | |
tree | a381a75e795986523e65084ee9af1c41ef90a2c8 /src/http/ngx_http_core_module.h | |
parent | c583e6309f192afce5ffadfd2734d626a3bca323 (diff) | |
download | nginx-3f8dc595000ba4afb60c0fd8c389d7cc8400a148.tar.gz nginx-3f8dc595000ba4afb60c0fd8c389d7cc8400a148.zip |
nginx-0.3.61-RELEASE importrelease-0.3.61
*) Change: now the "tcp_nodelay" directive is turned on by default.
*) Feature: the "msie_refresh" directive.
*) Feature: the "recursive_error_pages" directive.
*) Bugfix: the "rewrite" directive returned incorrect redirect, if the
redirect had the captured escaped symbols from original URI.
Diffstat (limited to 'src/http/ngx_http_core_module.h')
-rw-r--r-- | src/http/ngx_http_core_module.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/http/ngx_http_core_module.h b/src/http/ngx_http_core_module.h index 35f865827..0f269a123 100644 --- a/src/http/ngx_http_core_module.h +++ b/src/http/ngx_http_core_module.h @@ -241,7 +241,9 @@ struct ngx_http_core_loc_conf_s { ngx_flag_t reset_timedout_connection; /* reset_timedout_connection */ ngx_flag_t port_in_redirect; /* port_in_redirect */ ngx_flag_t msie_padding; /* msie_padding */ + ngx_flag_t msie_refresh; /* msie_refresh */ ngx_flag_t log_not_found; /* log_not_found */ + ngx_flag_t recursive_error_pages; /* recursive_error_pages */ ngx_array_t *error_pages; /* error_page */ |