Skip to content

Instantly share code, notes, and snippets.

@comewalk
Created December 15, 2011 06:25
Show Gist options
  • Save comewalk/1480049 to your computer and use it in GitHub Desktop.
Save comewalk/1480049 to your computer and use it in GitHub Desktop.
Sharing files
#!/usr/bin/env perl
use strict;
use warnings;
use Plack::Builder;
use Plack::App::Directory;
builder {
Plack::App::Directory->new({root => "/path/to"})->to_app;
};
__END__
~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment