Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

catalyst::engine::apache(3pm) [debian man page]

Catalyst::Engine::Apache(3pm)				User Contributed Perl Documentation			     Catalyst::Engine::Apache(3pm)

NAME
Catalyst::Engine::Apache - Catalyst Apache Engines SYNOPSIS
For example Apache configurations, see the documentation for the engine that corresponds to your Apache version. "Catalyst::Engine::Apache::MP13" - mod_perl 1.3x "Catalyst::Engine::Apache2::MP19" - mod_perl 1.99x "Catalyst::Engine::Apache2::MP20" - mod_perl 2.x DESCRIPTION
These classes provide mod_perl support for Catalyst. METHODS
$c->engine->apache Returns an "Apache", "Apache::RequestRec" or "Apache2::RequestRec" object, depending on your mod_perl version. This method is also available as $c->apache. $c->engine->return If you need to return something other than OK from the mod_perl handler, you may set any other Apache constant in this method. You should only use this method if you know what you are doing or bad things may happen! For example, to return DECLINED in mod_perl 2: use Apache2::Const -compile => qw(DECLINED); $c->engine->return( Apache2::Const::DECLINED ); NOTES ABOUT LOCATIONMATCH The Apache engine tries to figure out the correct base path if your app is running within a LocationMatch block. For example: <LocationMatch ^/match/(this|that)*> SetHandler modperl PerlResponseHandler MyApp </LocationMatch> This will correctly set the base path to '/match/this/' or '/match/that/' depending on which path was used for the request. In some cases this may not be what you want, so you can disable this behavior by adding this to your configuration: PerlSetVar CatalystDisableLocationMatch 1 NOTES ON NON-STANDARD PORTS If you wish to run your site on a non-standard port you will need to use the "Port" Apache config rather than "Listen". This will result in the correct port being added to urls created using "uri_for". Port 8080 OVERLOADED METHODS
This class overloads some methods from "Catalyst::Engine". prepare_request($r) prepare_connection prepare_query_parameters prepare_headers prepare_path read_chunk finalize_body finalize_headers write SEE ALSO
Catalyst Catalyst::Engine. AUTHORS
o Sebastian Riedel <sri@cpan.org> o Christian Hansen <ch@ngmedia.com> o Andy Grundman <andy@hybridized.org> o Tomas Doran <bobtfish@bobtfish.net> COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by The "AUTHORS". This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.10.1 2010-11-26 Catalyst::Engine::Apache(3pm)

Check Out this Related Man Page

Catalyst::Engine::Apache2::MP19(3pm)			User Contributed Perl Documentation		      Catalyst::Engine::Apache2::MP19(3pm)

NAME
Catalyst::Engine::Apache2::MP19 - Catalyst Apache2 mod_perl 1.99x Engine SYNOPSIS
# Set up your Catalyst app as a mod_perl 1.99x application in httpd.conf PerlSwitches -I/var/www/MyApp/lib # Preload your entire application PerlModule MyApp <VirtualHost *> ServerName myapp.hostname.com DocumentRoot /var/www/MyApp/root <Location /> SetHandler modperl PerlResponseHandler MyApp </Location> # you can also run your app in any non-root location <Location /some/other/path> SetHandler perl-script PerlResponseHandler MyApp </Location> # Make sure to let Apache handle your static files # (It is not necessary to remove the Static::Simple plugin # in production; Apache will bypass Static::Simple if # configured in this way) <Location /static> SetHandler default-handler </Location> # If not running at a root location in a VirtualHost, # you'll probably need to set an Alias to the location # of your static files, and allow access to this location: Alias /myapp/static /filesystem/path/to/MyApp/root/static <Directory /filesystem/path/to/MyApp/root/static> allow from all </Directory> <Location /myapp/static> SetHandler default-handler </Location> </VirtualHost> DESCRIPTION
This is the Catalyst engine specialized for Apache2 mod_perl version 1.99x. WARNING
mod_perl 1.99 was the beta version for mod_perl 2.0. Upgrading to 2.0 is strongly recommended. CGI ISSUES
In order to run Catalyst under mod_perl 1.99 you will need to downgrade CGI to version 3.07, as it has dropped support for 1.99 in later versions. ModPerl::Registry While this method is not recommended, you can also run your Catalyst application via a ModPerl::Registry script. httpd.conf: PerlModule ModPerl::Registry Alias / /var/www/MyApp/script/myapp_registry.pl/ <Directory /var/www/MyApp/script> Options +ExecCGI </Directory> <Location /> SetHandler perl-script PerlResponseHandler ModPerl::Registry </Location> script/myapp_registry.pl (you will need to create this): #!/usr/bin/perl use strict; use warnings; use MyApp; MyApp->handle_request( Apache::RequestUtil->request ); METHODS
ok_constant SEE ALSO
Catalyst, Catalyst::Engine, Catalyst::Engine::Apache2. AUTHORS
o Sebastian Riedel <sri@cpan.org> o Christian Hansen <ch@ngmedia.com> o Andy Grundman <andy@hybridized.org> o Tomas Doran <bobtfish@bobtfish.net> COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by The "AUTHORS". This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.10.1 2010-11-26 Catalyst::Engine::Apache2::MP19(3pm)
Man Page