comparison src/http/modules/ngx_http_index_handler.c @ 489:45a460f82aec release-0.1.19

nginx-0.1.19-RELEASE import *) 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 <igor@sysoev.ru>
date Wed, 16 Feb 2005 13:40:36 +0000
parents c3c2848fc081
children 64d9afb209da
comparison
equal deleted inserted replaced
488:24c8dcb960fd 489:45a460f82aec
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