comparison src/http/ngx_http_core_module.h @ 410:a094317ba307 NGINX_0_7_14

nginx 0.7.14 *) Change: now the ssl_certificate and ssl_certificate_key directives have not default values. *) Feature: the "listen" directive supports the "ssl" parameter. *) Feature: now nginx takes into account a time zone change while reconfiguration on FreeBSD and Linux. *) Bugfix: the "listen" directive parameters such as "backlog", "rcvbuf", etc. were not set, if a default server was not the first one. *) Bugfix: if URI part captured by a "rewrite" directive was used as a query string, then the query string was not escaped. *) Bugfix: configuration file validity test improvements.
author Igor Sysoev <http://sysoev.ru>
date Mon, 01 Sep 2008 00:00:00 +0400
parents 6ebbca3d5ed7
children 79c5df00501e
comparison
equal deleted inserted replaced
409:d46814b99ca0 410:a094317ba307
33 33
34 34
35 typedef struct { 35 typedef struct {
36 unsigned default_server:1; 36 unsigned default_server:1;
37 unsigned bind:1; 37 unsigned bind:1;
38 #if (NGX_HTTP_SSL)
39 unsigned ssl:1;
40 #endif
38 41
39 int backlog; 42 int backlog;
40 int rcvbuf; 43 int rcvbuf;
41 int sndbuf; 44 int sndbuf;
42 45
165 168
166 /* the default server configuration for this address:port */ 169 /* the default server configuration for this address:port */
167 ngx_http_core_srv_conf_t *core_srv_conf; 170 ngx_http_core_srv_conf_t *core_srv_conf;
168 171
169 ngx_http_virtual_names_t *virtual_names; 172 ngx_http_virtual_names_t *virtual_names;
173
174 #if (NGX_HTTP_SSL)
175 ngx_uint_t ssl; /* unsigned ssl:1; */
176 #endif
170 } ngx_http_in_addr_t; 177 } ngx_http_in_addr_t;
171 178
172 179
173 typedef struct { 180 typedef struct {
174 in_port_t port; 181 in_port_t port;
201 /* the default server configuration for this address:port */ 208 /* the default server configuration for this address:port */
202 ngx_http_core_srv_conf_t *core_srv_conf; 209 ngx_http_core_srv_conf_t *core_srv_conf;
203 210
204 unsigned default_server:1; 211 unsigned default_server:1;
205 unsigned bind:1; 212 unsigned bind:1;
213 #if (NGX_HTTP_SSL)
214 unsigned ssl:1;
215 #endif
206 216
207 ngx_http_listen_conf_t *listen_conf; 217 ngx_http_listen_conf_t *listen_conf;
208 } ngx_http_conf_in_addr_t; 218 } ngx_http_conf_in_addr_t;
209 219
210 220