Files
nginx-unit/test/perl/header_equal_names/psgi.pl
2018-02-26 19:53:40 +03:00

10 lines
195 B
Raku

my $app = sub {
my ($environ) = @_;
return ['200', [
'Content-Length' => 0,
'Set-Cookie' => 'tc=one,two,three',
'Set-Cookie' => 'tc=four,five,six'
], []];
};