diff src/http/modules/ngx_http_proxy_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 5bef04fc3fd5
children 30862655219e
line wrap: on
line diff
--- a/src/http/modules/ngx_http_proxy_module.c
+++ b/src/http/modules/ngx_http_proxy_module.c
@@ -1585,7 +1585,7 @@ ngx_http_proxy_merge_loc_conf(ngx_conf_t
     if (conf->upstream.busy_buffers_size < size) {
         ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
              "\"proxy_busy_buffers_size\" must be equal or bigger than "
-             "maximum of the value of \"proxy_header_buffer_size\" and "
+             "maximum of the value of \"proxy_buffer_size\" and "
              "one of the \"proxy_buffers\"");
 
         return NGX_CONF_ERROR;
@@ -1616,7 +1616,7 @@ ngx_http_proxy_merge_loc_conf(ngx_conf_t
     if (conf->upstream.temp_file_write_size < size) {
         ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
              "\"proxy_temp_file_write_size\" must be equal or bigger than "
-             "maximum of the value of \"proxy_header_buffer_size\" and "
+             "maximum of the value of \"proxy_buffer_size\" and "
              "one of the \"proxy_buffers\"");
 
         return NGX_CONF_ERROR;
@@ -1639,7 +1639,7 @@ ngx_http_proxy_merge_loc_conf(ngx_conf_t
         ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
              "\"proxy_max_temp_file_size\" must be equal to zero to disable "
              "the temporary files usage or must be equal or bigger than "
-             "maximum of the value of \"proxy_header_buffer_size\" and "
+             "maximum of the value of \"proxy_buffer_size\" and "
              "one of the \"proxy_buffers\"");
 
         return NGX_CONF_ERROR;