comparison ssl_certificates.t @ 1224:2ec9ce1bc820

Tests: fixed ssl_certificates.t for nginx built with OpenSSL 0.9.8. OpenSSL 0.9.8 covers ECC-based ciphersuites under pre-RFC4492 "ECCdraft" alias.
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 02 Oct 2017 13:26:43 +0300
parents 0af58b78df35
children 0090e2476ef0
comparison
equal deleted inserted replaced
1223:56e7da831f46 1224:2ec9ce1bc820
41 http { 41 http {
42 %%TEST_GLOBALS_HTTP%% 42 %%TEST_GLOBALS_HTTP%%
43 43
44 ssl_certificate_key rsa.key; 44 ssl_certificate_key rsa.key;
45 ssl_certificate rsa.crt; 45 ssl_certificate rsa.crt;
46 ssl_ciphers DEFAULT:ECCdraft;
46 47
47 server { 48 server {
48 listen 127.0.0.1:8080 ssl; 49 listen 127.0.0.1:8080 ssl;
49 server_name localhost; 50 server_name localhost;
50 51