|
NAMEPlack::Middleware::Header - modify HTTP response headersSYNOPSISuse Plack::Builder; my $app = sub {['200', [], ['hello']]}; builder { enable 'Header', set => ['X-Plack-One' => '1'], append => ['X-Plack-Two' => '2'], unset => ['X-Plack-Three']; $app; }; DESCRIPTIONPlack::Middleware::HeaderAUTHORMasahiro ChibaLICENSEThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.SEE ALSOPlack::Middleware Plack::Builder
Visit the GSP FreeBSD Man Page Interface. |