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