From: hkclark Date: Fri, 2 Sep 2011 13:19:20 +0000 (-0400) Subject: Add comment for RT #31164 X-Git-Tag: 5.9003~25^2~11 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=d5eac609f224140bd9172bf71c25268c20a031af Add comment for RT #31164 --- diff --git a/lib/Catalyst/Manual/Deployment/Apache/mod_perl.pod b/lib/Catalyst/Manual/Deployment/Apache/mod_perl.pod index 9fd9e29..7296890 100644 --- a/lib/Catalyst/Manual/Deployment/Apache/mod_perl.pod +++ b/lib/Catalyst/Manual/Deployment/Apache/mod_perl.pod @@ -92,9 +92,23 @@ controller, model, and view classes and configuration. If you have -Debug mode enabled, you will see the startup output scroll by when you first start Apache. +Also, there have been reports that the block above should instead be (but +this has not been confirmed): + + + use lib '/var/www/MyApp/lib'; + use MyApp; + + + + SetHandler modperl + PerlResponseHandler MyApp + + For an example Apache 1.3 configuration, please see the documentation for L. + =head2 Test It That's it, your app is now a full-fledged mod_perl application! Try it out