1use strict; 2use warnings; 3 4our %args = ( 5 client => { 6 func => \&http_client, 7 len => 33, 8 }, 9 relayd => { 10 protocol => [ "http", 11 'match request path "/3*" value "*" tag RING0', 12 'match request tagged RING0 tag RINGX', 13 ], 14 loggrep => { ", RINGX,.*done" => 1 }, 15 }, 16 server => { 17 func => \&http_server, 18 }, 19 len => 33, 20); 21 221; 23