comparison src/core/nginx.c @ 536:0dc162a5f3e8 NGINX_0_8_20

nginx 0.8.20 *) Change: now default SSL ciphers are "HIGH:!ADH:!MD5". *) Bugfix: the ngx_http_autoindex_module did not show the trailing slash in links to a directory; the bug had appeared in 0.7.15. *) Bugfix: nginx did not close a log file set by the --error-log-path configuration option; the bug had appeared in 0.7.53. *) Bugfix: nginx did not treat a comma as separator in the "Cache-Control" backend response header line. *) Bugfix: nginx/Windows might not create temporary file, a cache file, or "proxy/fastcgi_store"d file if a worker has no enough access rights for top level directories. *) Bugfix: the "Set-Cookie" and "P3P" FastCGI response header lines were not hidden while caching if no "fastcgi_hide_header" directives were used with any parameters. *) Bugfix: nginx counted incorrectly disk cache size.
author Igor Sysoev <http://sysoev.ru>
date Wed, 14 Oct 2009 00:00:00 +0400
parents f7ec98e3caeb
children 1dcf6adad484
comparison
equal deleted inserted replaced
535:4584144e5de2 536:0dc162a5f3e8
374 ngx_set_stderr_n " failed"); 374 ngx_set_stderr_n " failed");
375 return 1; 375 return 1;
376 } 376 }
377 } 377 }
378 378
379 if (log->file->fd != ngx_stderr) {
380 if (ngx_close_file(log->file->fd) == NGX_FILE_ERROR) {
381 ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno,
382 ngx_close_file_n " built-in log failed");
383 }
384 }
385
379 ngx_use_stderr = 0; 386 ngx_use_stderr = 0;
380 387
381 if (ngx_process == NGX_PROCESS_SINGLE) { 388 if (ngx_process == NGX_PROCESS_SINGLE) {
382 ngx_single_process_cycle(cycle); 389 ngx_single_process_cycle(cycle);
383 390