comparison src/http/modules/ngx_http_index_handler.c @ 38:2879cd3a40cb NGINX_0_1_19

nginx 0.1.19 *) Bugfix: now, if request contains the zero, then the 404 error is returned for the local requests. *) Bugfix: nginx could not be built on NetBSD 2.0. *) Bugfix: the timeout may occur while reading of the the client request body via SSL connections.
author Igor Sysoev <http://sysoev.ru>
date Wed, 16 Feb 2005 00:00:00 +0300
parents 420dd3f9e703
children 6cfc63e68377
comparison
equal deleted inserted replaced
37:3376a7dea5d6 38:2879cd3a40cb
118 118
119 if (r->uri.data[r->uri.len - 1] != '/') { 119 if (r->uri.data[r->uri.len - 1] != '/') {
120 return NGX_DECLINED; 120 return NGX_DECLINED;
121 } 121 }
122 122
123 /* TODO: Win32 */
124 if (r->zero_in_uri) {
125 return NGX_DECLINED;
126 }
127
123 log = r->connection->log; 128 log = r->connection->log;
124 129
125 /* 130 /*
126 * we use context because the handler supports an async file opening 131 * we use context because the handler supports an async file opening
127 * and thus can be called several times 132 * and thus can be called several times