comparison src/core/ngx_conf_file.h @ 511:c12967aadd87 release-0.1.30

nginx-0.1.30-RELEASE import *) Bugfix: the worker process may got caught in an endless loop if the SSI was used. *) Bugfix: the response encrypted by SSL may not transferred complete. *) Bugfix: if the length of the response part received at once from proxied or FastCGI server was equal to 500, then nginx returns the 500 response code; in proxy mode the the bug had appeared in 0.1.29 only. *) Bugfix: nginx did not consider the directives with 8 or 9 parameters as invalid. *) Feature: the "return" directive can return the 204 response code. *) Feature: the "ignore_invalid_headers" directive.
author Igor Sysoev <igor@sysoev.ru>
date Sat, 14 May 2005 18:42:03 +0000
parents 9b8c906f6e63
children b09ee85d0ac8
comparison
equal deleted inserted replaced
510:3e9296472a39 511:c12967aadd87
24 #define NGX_CONF_TAKE3 0x00000008 24 #define NGX_CONF_TAKE3 0x00000008
25 #define NGX_CONF_TAKE4 0x00000010 25 #define NGX_CONF_TAKE4 0x00000010
26 #define NGX_CONF_TAKE5 0x00000020 26 #define NGX_CONF_TAKE5 0x00000020
27 #define NGX_CONF_TAKE6 0x00000040 27 #define NGX_CONF_TAKE6 0x00000040
28 #define NGX_CONF_TAKE7 0x00000080 28 #define NGX_CONF_TAKE7 0x00000080
29
30 #define NGX_CONF_MAX_ARGS 8
29 31
30 #define NGX_CONF_TAKE12 (NGX_CONF_TAKE1|NGX_CONF_TAKE2) 32 #define NGX_CONF_TAKE12 (NGX_CONF_TAKE1|NGX_CONF_TAKE2)
31 #define NGX_CONF_TAKE13 (NGX_CONF_TAKE1|NGX_CONF_TAKE3) 33 #define NGX_CONF_TAKE13 (NGX_CONF_TAKE1|NGX_CONF_TAKE3)
32 34
33 #define NGX_CONF_TAKE23 (NGX_CONF_TAKE2|NGX_CONF_TAKE3) 35 #define NGX_CONF_TAKE23 (NGX_CONF_TAKE2|NGX_CONF_TAKE3)