Skip to content

cv-library/Plack-App-URLHashMap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

NAME

Plack::App::URLHashMap - Map multiple apps in different paths

SYNOPSIS

use Plack::App::URLHashMap;
 
my $app1 = sub { ... };
my $app2 = sub { ... };
 
my $urlmap = Plack::App::URLMap->new;

$urlmap->map( '/'    => $app1 );
$urlmap->map( '/foo' => $app2 );
 
my $app = $urlmap->to_app;

DESCRIPTION

This PSGI application is a simpler alternative to Plack::App::URLMap.

It dispatches requests to different apps by looking up PATH_INFO in a hash.

CAVEATS

This application requires exact matching, /foo and /foo/ are different paths, as such you will need two entries if you want both to work. This works similar to a location = block in nginx.

SEE ALSO

Plack::App::URLMap

COPYRIGHT AND LICENSE

Copyright (C) 2014 CV-Library Ltd.

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

About

Map multiple apps in different paths

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages