comparison src/http/modules/ngx_http_ssl_module.h @ 196:8759b346e431 NGINX_0_3_45

nginx 0.3.45 *) Feature: the "ssl_verify_client", "ssl_verify_depth", and "ssl_client_certificate" directives. *) Change: the $request_method variable now returns the main request method. *) Change: the ° symbol codes were changed in koi-win conversion table. *) Feature: the euro и N symbols were added to koi-win conversion table. *) Bugfix: if nginx distributed the requests among several backends and some backend failed, then requests intended for this backend was directed to one live backend only instead of being distributed among the rest.
author Igor Sysoev <http://sysoev.ru>
date Sat, 06 May 2006 00:00:00 +0400
parents d25a1d6034f1
children 29a6403156b0
comparison
equal deleted inserted replaced
195:b65e20aebc10 196:8759b346e431
20 20
21 ngx_flag_t prefer_server_ciphers; 21 ngx_flag_t prefer_server_ciphers;
22 22
23 ngx_uint_t protocols; 23 ngx_uint_t protocols;
24 24
25 ngx_int_t verify;
26 ngx_int_t verify_depth;
27
25 time_t session_timeout; 28 time_t session_timeout;
26 29
27 ngx_str_t certificate; 30 ngx_str_t certificate;
28 ngx_str_t certificate_key; 31 ngx_str_t certificate_key;
32 ngx_str_t client_certificate;
29 33
30 ngx_str_t ciphers; 34 ngx_str_t ciphers;
31 } ngx_http_ssl_srv_conf_t; 35 } ngx_http_ssl_srv_conf_t;
32 36
33 37