comparison src/http/modules/ngx_http_static_module.c @ 527:7fa11e5c6e96 release-0.1.38

nginx-0.1.38-RELEASE import *) Feature: the "limit_rate" directive is supported in in proxy and FastCGI mode. *) Feature: the "X-Accel-Limit-Rate" response header line is supported in proxy and FastCGI mode. *) Feature: the "break" directive. *) Feature: the "log_not_found" directive. *) Bugfix: the response status code was not changed when request was redirected by the ""X-Accel-Redirect" header line. *) Bugfix: the variables set by the "set" directive could not be used in SSI. *) Bugfix: the segmentation fault may occurred if the SSI page has more than one remote subrequest. *) Bugfix: nginx treated the backend response as invalid if the status line in the header was transferred in two packets; the bug had appeared in 0.1.29. *) Feature: the "ssi_types" directive. *) Feature: the "autoindex_exact_size" directive. *) Bugfix: the ngx_http_autoindex_module did not support the long file names in UTF-8. *) Feature: the IMAP/POP3 proxy.
author Igor Sysoev <igor@sysoev.ru>
date Fri, 08 Jul 2005 14:34:20 +0000
parents 9b8c906f6e63
children b09ee85d0ac8
comparison
equal deleted inserted replaced
526:e31ce4d8b8e6 527:7fa11e5c6e96
208 } else { 208 } else {
209 level = NGX_LOG_CRIT; 209 level = NGX_LOG_CRIT;
210 rc = NGX_HTTP_INTERNAL_SERVER_ERROR; 210 rc = NGX_HTTP_INTERNAL_SERVER_ERROR;
211 } 211 }
212 212
213 ngx_log_error(level, log, err, 213 if (rc != NGX_HTTP_NOT_FOUND || clcf->log_not_found) {
214 ngx_open_file_n " \"%s\" failed", name.data); 214 ngx_log_error(level, log, err,
215 ngx_open_file_n " \"%s\" failed", name.data);
216 }
215 217
216 return rc; 218 return rc;
217 } 219 }
218 220
219 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, log, 0, "http static fd: %d", fd); 221 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, log, 0, "http static fd: %d", fd);