Plack::App::PSGIBin - Run .psgi files from a directory


Plack documentation Contained in the Plack distribution.

Index


Code Index:

NAME

Top

Plack::App::PSGIBin - Run .psgi files from a directory

SYNOPSIS

Top

  use Plack::App::PSGIBin;
  use Plack::Builder;

  my $app = Plack::App::PSGIBin->new(root => "/path/to/psgi/scripts")->to_app;
  builder {
      mount "/psgi" => $app;
  };

  # Or from the command line
  plackup -MPlack::App::PSGIBin -e 'Plack::App::PSGIBin->new(root => "/path/psgi/scripts")->to_app'

DESCRIPTION

Top

This application loads .psgi files (or actually whichever filename extensions) from the root directory and run it as a PSGI application. Suppose you have a directory containing foo.psgi and bar.psgi, map this application to /app with Plack::App::URLMap and you can access them via the URL:

  http://example.com/app/foo.psgi
  http://example.com/app/bar.psgi

to load them. You can rename the file to the one without .psgi extension to make the URL look nicer, or use the URL rewriting tools like Plack::Middleware::Rewrite to do the same thing.

AUTHOR

Top

Tatsuhiko Miyagawa

SEE ALSO

Top

Plack::App::CGIBin


Plack documentation Contained in the Plack distribution.

package Plack::App::PSGIBin;
use strict;
use warnings;
use parent qw/Plack::App::File/;
use Plack::Util;

sub allow_path_info { 1 }

sub serve_path {
    my($self, $env, $file) = @_;

    my $app = $self->{_compiled}->{$file} ||= Plack::Util::load_psgi($file);

    $app->($env);
}

1;

__END__