comparison src/http/ngx_http_core_module.h @ 342:4276c2f1f434 NGINX_0_6_15

nginx 0.6.15 *) Feature: cygwin compatibility. Thanks to Vladimir Kutakov. *) Feature: the "merge_slashes" directive. *) Feature: the "gzip_vary" directive. *) Feature: the "server_tokens" directive. *) Bugfix: nginx did not unescape URI in the "include" SSI command. *) Bugfix: the segmentation fault was occurred on start or while reconfiguration if variable was used in the "charset" or "source_charset" directives. *) Bugfix: nginx returned the 400 response on requests like "GET http://www.domain.com HTTP/1.0". Thanks to James Oakley. *) Bugfix: if request with request body was redirected using the "error_page" directive, then nginx tried to read the request body again; bug appeared in 0.6.7. *) Bugfix: a segmentation fault occurred in worker process if no server_name was explicitly defined for server processing request; bug appeared in 0.6.7.
author Igor Sysoev <http://sysoev.ru>
date Mon, 22 Oct 2007 00:00:00 +0400
parents 1c519aff5c0c
children e10168d6e371
comparison
equal deleted inserted replaced
341:183b4761fe5b 342:4276c2f1f434
141 141
142 ngx_msec_t client_header_timeout; 142 ngx_msec_t client_header_timeout;
143 143
144 ngx_flag_t optimize_server_names; 144 ngx_flag_t optimize_server_names;
145 ngx_flag_t ignore_invalid_headers; 145 ngx_flag_t ignore_invalid_headers;
146 ngx_flag_t merge_slashes;
146 } ngx_http_core_srv_conf_t; 147 } ngx_http_core_srv_conf_t;
147 148
148 149
149 /* list of structures to find core_srv_conf quickly at run time */ 150 /* list of structures to find core_srv_conf quickly at run time */
150 151
183 ngx_array_t names; /* array of ngx_http_server_name_t */ 184 ngx_array_t names; /* array of ngx_http_server_name_t */
184 185
185 #if (NGX_PCRE) 186 #if (NGX_PCRE)
186 ngx_uint_t nregex; 187 ngx_uint_t nregex;
187 ngx_http_server_name_t *regex; 188 ngx_http_server_name_t *regex;
188
189 #endif 189 #endif
190 190
191 /* the default server configuration for this address:port */ 191 /* the default server configuration for this address:port */
192 ngx_http_core_srv_conf_t *core_srv_conf; 192 ngx_http_core_srv_conf_t *core_srv_conf;
193 193
283 ngx_flag_t port_in_redirect; /* port_in_redirect */ 283 ngx_flag_t port_in_redirect; /* port_in_redirect */
284 ngx_flag_t msie_padding; /* msie_padding */ 284 ngx_flag_t msie_padding; /* msie_padding */
285 ngx_flag_t msie_refresh; /* msie_refresh */ 285 ngx_flag_t msie_refresh; /* msie_refresh */
286 ngx_flag_t log_not_found; /* log_not_found */ 286 ngx_flag_t log_not_found; /* log_not_found */
287 ngx_flag_t recursive_error_pages; /* recursive_error_pages */ 287 ngx_flag_t recursive_error_pages; /* recursive_error_pages */
288 ngx_flag_t server_tokens; /* server_tokens */
288 289
289 ngx_array_t *error_pages; /* error_page */ 290 ngx_array_t *error_pages; /* error_page */
290 291
291 ngx_path_t *client_body_temp_path; /* client_body_temp_path */ 292 ngx_path_t *client_body_temp_path; /* client_body_temp_path */
292 293