The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Plack::Middleware::Expires - mod_expires for plack

SYNOPSIS

use Plack::Builder;

builder {
    enable 'Expires',
      content_type => qr!^image/!i,
      expires => 'access plus 3 months';
    $app;
}

DESCRIPTION

Plack::Middleware::Expires is Apache's mod_expires for Plack. This middleware controls the setting of Expires HTTP header and the max-age directive of the Cache-Control HTTP header in server responses. Note: Expires works only for successful response and If exists Expires HTTP header already, this middleware does not override.

CONFIGURATIONS

AUTHOR

Masahiro Nagano

SEE ALSO

http://httpd.apache.org/docs/2.2/en/mod/mod_expires.html

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.