1# test https connection over http relay
2
3use strict;
4use warnings;
5
6our %args = (
7    client => {
8	func => \&http_client,
9	ssl => 1,
10	loggrep => 'Issuer.*/OU=relayd/',
11    },
12    relayd => {
13	protocol => [ "http",
14	    "match request header log foo",
15	    "match response header log bar",
16	],
17	forwardssl => 1,
18	listenssl => 1,
19
20    },
21    server => {
22	func => \&http_server,
23	ssl => 1,
24    },
25    len => 251,
26    md5 => "bc3a3f39af35fe5b1687903da2b00c7f",
27);
28
291;
30