[Catalyst] Apache2 and Mod_Perl2 set up

Jason Woodward woodwardj at jaos.org
Thu Nov 10 21:09:45 CET 2005


> Are there any tutorials for a Apache2 Mod_Perl2 and
> Catalyst (5.33) out there.  For the life of me I can't
> seem to get the set up working correctly.  Here is my
> relevant startup.pl, .conf files along with my error
> log.  I'm just trying to get the basic app runnin. 
> I"ve made no modifications to the skeleton.  It does
> run under the test server.  I'm running Fedora Core 4

I use the following within a VirtualHost:

  PerlOptions +Parent
  PerlSwitches            -I/var/www/YourAppName/lib
  PerlModule YourAppName
  PerlLoadModule          YourAppName

  <Location />
    SetHandler              modperl
    PerlResponseHandler     YourAppName
  </Location>

  <LocationMatch "/(images|error|css|cgi-bin)">
    SetHandler none
  </LocationMatch>


HTH,
jason

--
Jason Woodward
woodwardj at jaos.org





More information about the Catalyst mailing list