Add comment for RT #31164
hkclark [Fri, 2 Sep 2011 13:19:20 +0000 (09:19 -0400)]
lib/Catalyst/Manual/Deployment/Apache/mod_perl.pod

index 9fd9e29..7296890 100644 (file)
@@ -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):
+
+    <Perl>
+        use lib '/var/www/MyApp/lib';
+        use MyApp;
+    </Perl>
+    
+    <Location />
+        SetHandler          modperl
+        PerlResponseHandler MyApp
+    </Location>
+
 For an example Apache 1.3 configuration, please see the documentation for
 L<Catalyst::Engine::Apache::MP13>.
 
+
 =head2 Test It
 
 That's it, your app is now a full-fledged mod_perl application!  Try it out