comparison src/http/ngx_http_core_module.h @ 663:6d5c1535bb9d release-0.3.53

nginx-0.3.53-RELEASE import *) Change: the "add_header" directive adds the string to 204, 301, and 302 responses. *) Feature: the "server" directive in the "upstream" context supports the "weight" parameter. *) Feature: the "server_name" directive supports the "*" wildcard. *) Feature: nginx supports the request body size more than 2G. *) Bugfix: if a client was successfully authorized using "satisfy_any on", then anyway the message "access forbidden by rule" was written in the log. *) Bugfix: the "PUT" method may erroneously not create a file and return the 409 code. *) Bugfix: if the IMAP/POP3 backend returned an error, then nginx continued proxying anyway.
author Igor Sysoev <igor@sysoev.ru>
date Fri, 07 Jul 2006 16:33:19 +0000
parents 1e720b0be7ec
children 63a820b0bc6c
comparison
equal deleted inserted replaced
662:4c15f63afe65 663:6d5c1535bb9d
114 114
115 ngx_msec_t client_header_timeout; 115 ngx_msec_t client_header_timeout;
116 116
117 ngx_flag_t optimize_server_names; 117 ngx_flag_t optimize_server_names;
118 ngx_flag_t ignore_invalid_headers; 118 ngx_flag_t ignore_invalid_headers;
119
120 ngx_uint_t wildcard; /* unsigned wildcard:1 */
119 } ngx_http_core_srv_conf_t; 121 } ngx_http_core_srv_conf_t;
120 122
121 123
122 /* list of structures to find core_srv_conf quickly at run time */ 124 /* list of structures to find core_srv_conf quickly at run time */
123 125
211 213
212 ngx_array_t *types; 214 ngx_array_t *types;
213 ngx_hash_t types_hash; 215 ngx_hash_t types_hash;
214 ngx_str_t default_type; 216 ngx_str_t default_type;
215 217
216 size_t client_max_body_size; /* client_max_body_size */ 218 off_t client_max_body_size; /* client_max_body_size */
219
217 size_t client_body_buffer_size; /* client_body_buffer_size */ 220 size_t client_body_buffer_size; /* client_body_buffer_size */
218 size_t send_lowat; /* send_lowat */ 221 size_t send_lowat; /* send_lowat */
219 size_t postpone_output; /* postpone_output */ 222 size_t postpone_output; /* postpone_output */
220 size_t limit_rate; /* limit_rate */ 223 size_t limit_rate; /* limit_rate */
221 224