comparison ssl.t @ 378:de2f7e86866e

Tests: disabled session tickets. This is a workaround for session reuse issues seen with older openssl.
author Sergey Kandaurov <pluknet@nginx.com>
date Tue, 25 Feb 2014 19:29:21 +0400
parents 74cfe56c7b83
children 847ea345becb
comparison
equal deleted inserted replaced
377:ba95a443ff1f 378:de2f7e86866e
51 server_name localhost; 51 server_name localhost;
52 52
53 ssl_certificate_key localhost.key; 53 ssl_certificate_key localhost.key;
54 ssl_certificate localhost.crt; 54 ssl_certificate localhost.crt;
55 ssl_session_cache shared:SSL:10m; 55 ssl_session_cache shared:SSL:10m;
56 ssl_session_tickets off;
56 57
57 location /reuse { 58 location /reuse {
58 return 200 "body $ssl_session_reused"; 59 return 200 "body $ssl_session_reused";
59 } 60 }
60 location /id { 61 location /id {