comparison src/http/modules/ngx_http_index_module.c @ 194:003bd800ec2a NGINX_0_3_44

nginx 0.3.44 *) Feature: the "wait" parameter in the "include" SSI command. *) Feature: the Ukrainian and Byelorussian characters were added to koi-win conversion table. *) Bugfix: in the SSI.
author Igor Sysoev <http://sysoev.ru>
date Thu, 04 May 2006 00:00:00 +0400
parents 54aabf2b0bc6
children 14050d2bec9b
comparison
equal deleted inserted replaced
193:2a1394604ae9 194:003bd800ec2a
141 /* TODO: Win32 */ 141 /* TODO: Win32 */
142 if (r->zero_in_uri) { 142 if (r->zero_in_uri) {
143 return NGX_DECLINED; 143 return NGX_DECLINED;
144 } 144 }
145 145
146 if (r->method != NGX_HTTP_GET && r->method != NGX_HTTP_HEAD) { 146 if (!(r->method & (NGX_HTTP_GET|NGX_HTTP_HEAD))) {
147 return NGX_DECLINED; 147 return NGX_DECLINED;
148 } 148 }
149 149
150 log = r->connection->log; 150 log = r->connection->log;
151 151