• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

inc/H09-Sep-2010-6,2744,658

lib/Plack/Middleware/H09-Sep-2010-7529

t/H09-Sep-2010-137111

xt/H09-Sep-2010-2622

.gitignoreH A D09-Sep-201043 86

ChangesH A D09-Sep-2010367 149

MANIFESTH A D09-Sep-2010720 3433

META.ymlH A D09-Sep-2010634 3029

Makefile.PLH A D09-Sep-2010312 1512

READMEH A D09-Sep-2010591 2921

README

1NAME
2    Plack::Middleware::Header - modify HTTP response headers
3
4SYNOPSIS
5      use Plack::Builder;
6
7      my $app = sub {['200', [], ['hello']]};
8      builder {
9          enable 'Header',
10            set => ['X-Plack-One' => '1'],
11            append => ['X-Plack-Two' => '2'],
12            unset => ['X-Plack-Three'];
13          $app;
14      };
15
16DESCRIPTION
17    Plack::Middleware::Header
18
19AUTHOR
20    Masahiro Chiba
21
22LICENSE
23    This library is free software; you can redistribute it and/or modify it
24    under the same terms as Perl itself.
25
26SEE ALSO
27    Plack::Middleware Plack::Builder
28
29