comparison src/http/ngx_http_request.h @ 464:c8cfb6c462ef NGINX_0_7_44

nginx 0.7.44 *) Feature: the ngx_http_proxy_module preliminary cache support. *) Feature: the --with-pcre option in the configure. *) Feature: the "try_files" directive is now allowed on the server block level. *) Bugfix: the "try_files" directive handled incorrectly a query string in a fallback parameter. *) Bugfix: the "try_files" directive might test incorrectly directories. *) Bugfix: if there is the single server for given address:port pair, then captures in regular expressions in a "server_name" directive did not work.
author Igor Sysoev <http://sysoev.ru>
date Mon, 23 Mar 2009 00:00:00 +0300
parents ca8f7f6cab16
children f2c6a7373274
comparison
equal deleted inserted replaced
463:51cb914e6d3a 464:c8cfb6c462ef
346 void **loc_conf; 346 void **loc_conf;
347 347
348 ngx_http_event_handler_pt read_event_handler; 348 ngx_http_event_handler_pt read_event_handler;
349 ngx_http_event_handler_pt write_event_handler; 349 ngx_http_event_handler_pt write_event_handler;
350 350
351 #if (NGX_HTTP_CACHE)
351 ngx_http_cache_t *cache; 352 ngx_http_cache_t *cache;
353 #endif
352 354
353 ngx_http_upstream_t *upstream; 355 ngx_http_upstream_t *upstream;
354 ngx_array_t *upstream_states; 356 ngx_array_t *upstream_states;
355 /* of ngx_http_upstream_state_t */ 357 /* of ngx_http_upstream_state_t */
356 358
441 unsigned request_body_file_log_level:3; 443 unsigned request_body_file_log_level:3;
442 444
443 unsigned subrequest_in_memory:1; 445 unsigned subrequest_in_memory:1;
444 unsigned waited:1; 446 unsigned waited:1;
445 447
448 #if (NGX_HTTP_CACHE)
449 unsigned cached:1;
450 #endif
446 unsigned gzip:2; 451 unsigned gzip:2;
447 452
448 unsigned proxy:1; 453 unsigned proxy:1;
449 unsigned bypass_cache:1; 454 unsigned bypass_cache:1;
450 unsigned no_cache:1; 455 unsigned no_cache:1;