Added Apache CGI/FCGI/mod_perl examples

This commit is contained in:
Patrick Donelan 2009-10-11 01:07:08 +11:00
parent e9893b25f4
commit 784e0bd73c
5 changed files with 39 additions and 2 deletions

View file

@ -0,0 +1,5 @@
#!/usr/bin/perl
use Plack::Server::CGI;
my $app = Plack::Util::load_psgi("/data/WebGUI/etc/dev.localhost.localdomain.psgi");
Plack::Server::CGI->new->run($app);