Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > fcb80c15e04080e741925f09ed115f0f > files > 19

perl-Plack-1.4.700-2.mga7.noarch.rpm

use File::Basename;
my $path = $ENV{PSGI_IMAGE_FILE} || dirname(__FILE__) . "/../../share/baybridge.jpg";
my $handler = sub {
    open my $fh, "<:raw", $path or die $!;
    return [ 200, [ "Content-Type" => "image/jpeg", "X-Sendfile" => $path, "Content-Length" => -s $fh ], $fh ];
};