Skip to content

Instantly share code, notes, and snippets.

@jshirley
Created June 2, 2009 21:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jshirley/122605 to your computer and use it in GitHub Desktop.
Save jshirley/122605 to your computer and use it in GitHub Desktop.
my $app = App::Manager->new_with_traits(
# I'm managing Catalyst applications running under Lighttpd
traits => [ 'Lighttpd', 'Catalyst' ],
applications => [
{
name => 'MyApp',
server => 'Catalyst',
# Custom to App::Manager::Catalyst:
engine => 'HTTP::Prefork',
port => 3000,
debug => 1,
stderr => '/tmp/myapp.log',
}
]
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment