comparison src/http/ngx_http_request.c @ 378:820f6378fc00 NGINX_0_7_1

nginx 0.7.1 *) Change: now locations are searched in a tree. *) Change: the "optimize_server_names" directive was canceled due to the "server_name_in_redirect" directive introduction. *) Change: some long deprecated directives are not supported anymore. *) Change: the "none" parameter in the "ssl_session_cache" directive; now this is default parameter. Thanks to Rob Mueller. *) Bugfix: worker processes might not catch reconfiguration and log rotation signals. *) Bugfix: nginx could not be built on latest Fedora 9 Linux. Thanks to Roxis.
author Igor Sysoev <http://sysoev.ru>
date Mon, 26 May 2008 00:00:00 +0400
parents edf1cb6c328e
children 984bb0b1399b
comparison
equal deleted inserted replaced
377:5d98007adb5f 378:820f6378fc00
1834 1834
1835 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); 1835 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
1836 1836
1837 if (!ngx_terminate 1837 if (!ngx_terminate
1838 && !ngx_exiting 1838 && !ngx_exiting
1839 && r->keepalive != 0 1839 && r->keepalive
1840 && clcf->keepalive_timeout > 0) 1840 && clcf->keepalive_timeout > 0)
1841 { 1841 {
1842 ngx_http_set_keepalive(r); 1842 ngx_http_set_keepalive(r);
1843 return; 1843 return;
1844 1844