comparison src/http/modules/ngx_http_ssl_module.h @ 647:95d7da23ea53 release-0.3.45

nginx-0.3.45-RELEASE import *) 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 and 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 <igor@sysoev.ru>
date Sat, 06 May 2006 16:28:56 +0000
parents 58475592100c
children e1ede83911ef
comparison
equal deleted inserted replaced
646:f198dec3e3af 647:95d7da23ea53
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