comparison ssl_engine_keys.t @ 974:882267679006

Tests: simplified parallel modifications in tests. Mail tests were simplified in c227348453db.
author Andrey Zelenkov <zelenkov@nginx.com>
date Tue, 12 Jul 2016 17:39:03 +0300
parents e9064d691790
children 8ef51dbb5d69
comparison
equal deleted inserted replaced
973:7d7aef8b9f3a 974:882267679006
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:%%PORT_1%% ssl; 46 listen 127.0.0.1:8081 ssl;
47 listen 127.0.0.1:%%PORT_0%%; 47 listen 127.0.0.1:8080;
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:%%PORT_1%%/; 57 proxy_pass https://127.0.0.1:8081/;
58 } 58 }
59 } 59 }
60 } 60 }
61 61
62 EOF 62 EOF