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