comparison ssl_engine_keys.t @ 952:e9064d691790

Tests: converted tests to run in parallel.
author Andrey Zelenkov <zelenkov@nginx.com>
date Tue, 21 Jun 2016 16:39:13 +0300
parents 3ac4036b139d
children 882267679006
comparison
equal deleted inserted replaced
951:9361c7eddfc1 952:e9064d691790
41 41
42 http { 42 http {
43 %%TEST_GLOBALS_HTTP%% 43 %%TEST_GLOBALS_HTTP%%
44 44
45 server { 45 server {
46 listen 127.0.0.1:8443 ssl; 46 listen 127.0.0.1:%%PORT_1%% ssl;
47 listen 127.0.0.1:8080; 47 listen 127.0.0.1:%%PORT_0%%;
48 server_name localhost; 48 server_name localhost;
49 49
50 ssl_certificate_key engine:pkcs11:slot_0-id_00; 50 ssl_certificate_key engine:pkcs11:slot_0-id_00;
51 ssl_certificate localhost.crt; 51 ssl_certificate localhost.crt;
52 52
53 location / { 53 location / {
54 # index index.html by default 54 # index index.html by default
55 } 55 }
56 location /proxy { 56 location /proxy {
57 proxy_pass https://127.0.0.1:8443/; 57 proxy_pass https://127.0.0.1:%%PORT_1%%/;
58 } 58 }
59 } 59 }
60 } 60 }
61 61
62 EOF 62 EOF