comparison src/http/modules/ngx_http_fastcgi_module.c @ 288:0b1cc3960e27 NGINX_0_5_14

nginx 0.5.14 *) Bugfix: nginx ignored superfluous closing "}" in the end of configuration file.
author Igor Sysoev <http://sysoev.ru>
date Fri, 23 Feb 2007 00:00:00 +0300
parents 3dbecd747fbb
children 92402f034b28
comparison
equal deleted inserted replaced
287:eaccdcfdfe41 288:0b1cc3960e27
1631 } 1631 }
1632 1632
1633 if (conf->upstream.busy_buffers_size < size) { 1633 if (conf->upstream.busy_buffers_size < size) {
1634 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, 1634 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1635 "\"fastcgi_busy_buffers_size\" must be equal or bigger than " 1635 "\"fastcgi_busy_buffers_size\" must be equal or bigger than "
1636 "maximum of the value of \"fastcgi_header_buffer_size\" and " 1636 "maximum of the value of \"fastcgi_buffer_size\" and "
1637 "one of the \"fastcgi_buffers\""); 1637 "one of the \"fastcgi_buffers\"");
1638 1638
1639 return NGX_CONF_ERROR; 1639 return NGX_CONF_ERROR;
1640 } 1640 }
1641 1641
1662 } 1662 }
1663 1663
1664 if (conf->upstream.temp_file_write_size < size) { 1664 if (conf->upstream.temp_file_write_size < size) {
1665 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, 1665 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1666 "\"fastcgi_temp_file_write_size\" must be equal or bigger than " 1666 "\"fastcgi_temp_file_write_size\" must be equal or bigger than "
1667 "maximum of the value of \"fastcgi_header_buffer_size\" and " 1667 "maximum of the value of \"fastcgi_buffer_size\" and "
1668 "one of the \"fastcgi_buffers\""); 1668 "one of the \"fastcgi_buffers\"");
1669 1669
1670 return NGX_CONF_ERROR; 1670 return NGX_CONF_ERROR;
1671 } 1671 }
1672 1672
1686 && conf->upstream.max_temp_file_size < size) 1686 && conf->upstream.max_temp_file_size < size)
1687 { 1687 {
1688 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, 1688 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1689 "\"fastcgi_max_temp_file_size\" must be equal to zero to disable " 1689 "\"fastcgi_max_temp_file_size\" must be equal to zero to disable "
1690 "the temporary files usage or must be equal or bigger than " 1690 "the temporary files usage or must be equal or bigger than "
1691 "maximum of the value of \"fastcgi_header_buffer_size\" and " 1691 "maximum of the value of \"fastcgi_buffer_size\" and "
1692 "one of the \"fastcgi_buffers\""); 1692 "one of the \"fastcgi_buffers\"");
1693 1693
1694 return NGX_CONF_ERROR; 1694 return NGX_CONF_ERROR;
1695 } 1695 }
1696 1696