comparison src/http/ngx_http_core_module.c @ 512:e1f4748dc78e NGINX_0_7_68

nginx 0.7.68 *) Bugfix: if there was a single server for given IPv6 address:port pair, then captures in regular expressions in a "server_name" directive did not work. *) Bugfix: a segmentation fault might occur in a worker process, if the "auth_basic" directive was used. Thanks to Michail Laletin. *) Bugfix: SSI response might be truncated after include with wait="yes"; the bug had appeared in 0.7.25. Thanks to Maxim Dounin. *) Bugfix: the "sub_filter" directive might change character case on partial match. *) Bugfix: nginx treated large SSLv2 packets as plain requests. Thanks to Miroslaw Jaworski. *) Bugfix: nginx might close IPv6 listen socket during reconfiguration. Thanks to Maxim Dounin.
author Igor Sysoev <http://sysoev.ru>
date Tue, 14 Dec 2010 00:00:00 +0300
parents 68c0ae0a4959
children
comparison
equal deleted inserted replaced
511:647973d42a2a 512:e1f4748dc78e
781 r->phase_handler = 0; 781 r->phase_handler = 0;
782 782
783 } else { 783 } else {
784 cmcf = ngx_http_get_module_main_conf(r, ngx_http_core_module); 784 cmcf = ngx_http_get_module_main_conf(r, ngx_http_core_module);
785 r->phase_handler = cmcf->phase_engine.server_rewrite_index; 785 r->phase_handler = cmcf->phase_engine.server_rewrite_index;
786 }
787
788 if (r->unparsed_uri.len) {
789 r->valid_unparsed_uri = 1;
790 } 786 }
791 787
792 r->valid_location = 1; 788 r->valid_location = 1;
793 #if (NGX_HTTP_GZIP) 789 #if (NGX_HTTP_GZIP)
794 r->gzip_tested = 0; 790 r->gzip_tested = 0;