comparison src/http/modules/ngx_http_ssl_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 0b6053502c55
children 24b676623d4f
comparison
equal deleted inserted replaced
409:d46814b99ca0 410:a094317ba307
35 ngx_str_t client_certificate; 35 ngx_str_t client_certificate;
36 36
37 ngx_str_t ciphers; 37 ngx_str_t ciphers;
38 38
39 ngx_shm_zone_t *shm_zone; 39 ngx_shm_zone_t *shm_zone;
40
41 u_char *file;
42 ngx_uint_t line;
40 } ngx_http_ssl_srv_conf_t; 43 } ngx_http_ssl_srv_conf_t;
41 44
42 45
43 extern ngx_module_t ngx_http_ssl_module; 46 extern ngx_module_t ngx_http_ssl_module;
44 47