comparison src/http/ngx_http_special_response.c @ 276:c5c2b2883984 NGINX_0_5_8

nginx 0.5.8 *) Bugfix: a segmentation fault might occur if "client_body_in_file_only on" was used and a request body was small. *) Bugfix: a segmentation fault occurred if "client_body_in_file_only on" and "proxy_pass_request_body off" or "fastcgi_pass_request_body off" directives were used, and nginx switched to a next upstream. *) Bugfix: if the "proxy_buffering off" directive was used and a client connection was non-active, then the connection was closed after send timeout; bug appeared in 0.4.7. *) Bugfix: if the "epoll" method was used and a client closed a connection prematurely, then nginx closed the connection after a send timeout only. *) Bugfix: the "[alert] zero size buf" error when FastCGI server was used. *) Bugfixes in the "limit_zone" directive.
author Igor Sysoev <http://sysoev.ru>
date Fri, 19 Jan 2007 00:00:00 +0300
parents a528ae0fe909
children 95183808f549
comparison
equal deleted inserted replaced
275:1779577cb845 276:c5c2b2883984
134 static char error_411_page[] = 134 static char error_411_page[] =
135 "<html>" CRLF 135 "<html>" CRLF
136 "<head><title>411 Length Required</title></head>" CRLF 136 "<head><title>411 Length Required</title></head>" CRLF
137 "<body bgcolor=\"white\">" CRLF 137 "<body bgcolor=\"white\">" CRLF
138 "<center><h1>411 Length Required</h1></center>" CRLF 138 "<center><h1>411 Length Required</h1></center>" CRLF
139 ;
140
141
142 static char error_412_page[] =
143 "<html>" CRLF
144 "<head><title>412 Precondition Failed</title></head>" CRLF
145 "<body bgcolor=\"white\">" CRLF
146 "<center><h1>412 Precondition Failed</h1></center>" CRLF
139 ; 147 ;
140 148
141 149
142 static char error_413_page[] = 150 static char error_413_page[] =
143 "<html>" CRLF 151 "<html>" CRLF
272 ngx_null_string, /* 407 */ 280 ngx_null_string, /* 407 */
273 ngx_string(error_408_page), 281 ngx_string(error_408_page),
274 ngx_string(error_409_page), 282 ngx_string(error_409_page),
275 ngx_string(error_410_page), 283 ngx_string(error_410_page),
276 ngx_string(error_411_page), 284 ngx_string(error_411_page),
277 ngx_null_string, /* 412 */ 285 ngx_string(error_412_page),
278 ngx_string(error_413_page), 286 ngx_string(error_413_page),
279 ngx_string(error_414_page), 287 ngx_string(error_414_page),
280 ngx_string(error_415_page), 288 ngx_string(error_415_page),
281 ngx_string(error_416_page), 289 ngx_string(error_416_page),
282 290