=head1 NAME mod_perl 2.0 Server Configuration =head1 Description This chapter provides an in-depth mod_perl 2.0 configuration details. =head1 mod_perl configuration directives Similar to mod_perl 1.0, in order to use mod_perl 2.0 a few configuration settings should be added to I. They are quite similar to 1.0 settings but some directives were renamed and new directives were added. =head1 Enabling mod_perl To enable mod_perl built as DSO add to I: LoadModule perl_module modules/mod_perl.so This setting specifies the location of the mod_perl module relative to the C setting, therefore you should put it somewhere after C is specified. If mod_perl has been statically linked it's automatically enabled. For Win32 specific details, see the documentation on L. Remember that you can't use mod_perl until you have configured Apache to use it. You need to configure L or L. =head1 Server Configuration Directives =head2 CPerlE> Sections With CPerlE>...C/PerlE> sections, it is possible to configure your server entirely in Perl. Please refer to the L manpage for more information. META: a dedicated chapter with examples? See also: L. =head2 C<=pod>, C<=over> and C<=cut> It's known that anything written between tokens C<=pod> and C<=cut> is ignored by the Perl parser. mod_perl allows you to use the same technique to make Apache ignore things in F (similar to # comments). With an exception to C<=over apache> and C<=over httpd> sections which are visible to Apache. For example the following configuration: #file: httpd.conf =pod PerlSetVar A 1 =over apache PerlSetVar B 2 =back PerlSetVar C 3 =cut PerlSetVar D 4 Apache will see: PerlSetVar B 2 PerlSetVar D 4 but not: PerlSetVar A 1 PerlSetVar C 3 C<=over httpd> is just an alias to C<=over apache>. Remember that C<=over> requires a corresponding C<=back>. =head2 C C is useful if you need to pass in multiple values into the same variable emulating arrays and hashes. For example: PerlAddVar foo bar PerlAddVar foo bar1 PerlAddVar foo bar2 You would retrieve these values with: my @foos = $r->dir_config->get('foo'); This would fill the I<@foos> array with 'bar', 'bar1', and 'bar2'. To pass in hashed values you need to ensure that you use an even number of directives per key. For example: PerlAddVar foo key1 PerlAddVar foo value1 PerlAddVar foo key2 PerlAddVar foo value2 You can then retrieve these values with: my %foos = $r->dir_config->get('foo'); Where I<%foos> will have a structure like: %foos = ( key1 => 'value1', key2 => 'value2', ); See also: L. =head2 C C does the same thing as C>, but it is executed as soon as it is encountered, i.e. during the configuration phase. You should be using this directive to load only files that introduce new configuration directives, used later in the configuration file. For any other purposes (like preloading modules) use C>. One of the reasons for avoding using the C directive, is that the C stream is not available during the restart phase, therefore the errors will be not reported. It is not a bug in mod_perl but an Apache limitation. Use C> if you can, and there you have the C stream sent to the error_log file (by default). See also: L. =head2 C The C directive is similar to C>, in a sense that it loads a module. The difference is that it's used to triggers L. This can be useful for modules that need to be loaded early, as is the case for modules that implement L, which are needed during the configuration phase. See also: L. =head2 C PerlModule Foo::Bar is equivalent to Perl's: require Foo::Bar; C is used to load modules using their package names. You can pass one or more module names as arguments to C: PerlModule Apache::DBI CGI DBD::Mysql Notice, that normally, the Perl startup is L until after the configuration phase. See also: C>. See also: L. =head2 C The directive C provides fine-grained configuration for what were compile-time only options in the first mod_perl generation. It also provides control over what class of Perl interpreter pool is used for a CVirtualHostE> or location configured with CLocationE>, CDirectoryE>, etc. L<$r-Eis_perl_option_enabled($option)|docs::2.0::api::Apache2::RequestUtil/C_is_perl_option_enabled_> and L<$s-Eis_perl_option_enabled($option)|docs::2.0::api::Apache2::ServerUtil/C_is_perl_option_enabled_> can be used at run-time to check whether a certain C<$option> has been enabled. (META: probably need to add/move this to the coding chapter) Options are enabled by prepending C<+> and disabled with C<->. See also: L. The available options are: =head3 C On by default, can be used to disable mod_perl for a given C. For example: PerlOptions -Enable =head3 C Share the parent Perl interpreter, but give the C its own interpreter pool. For example should you wish to fine tune interpreter pools for a given virtual host: PerlOptions +Clone PerlInterpStart 2 PerlInterpMax 2 This might be worthwhile in the case where certain hosts have their own sets of large-ish modules, used only in each host. By tuning each host to have its own pool, that host will continue to reuse the Perl allocations in their specific modules. =head3 C Off by default, can be used to have a C inherit the value of the C from the parent server. For instance, when cloning a Perl interpreter, to inherit the base Perl interpreter's C use: PerlOptions +Clone +InheritSwitches ... =head3 C Create a new parent Perl interpreter for the given C and give it its own interpreter pool (implies the C option). A common problem with mod_perl 1.0 was the shared namespace between all code within the process. Consider two developers using the same server and each wants to run a different version of a module with the same name. This example will create two I Perl interpreters, one for each CVirtualHostE>, each with its own namespace and pointing to a different paths in C<@INC>: META: is -Mlib portable? (problems with -Mlib on Darwin/5.6.0?) ServerName dev1 PerlOptions +Parent PerlSwitches -Mlib=/home/dev1/lib/perl ServerName dev2 PerlOptions +Parent PerlSwitches -Mlib=/home/dev2/lib/perl Remember that C<+Parent> gives you a completely new Perl interpreters pool, so all your modifications to C<@INC> and preloading of the modules should be done again. Consider using L if you want to inherit from the parent Perl interpreter. Or even for a given location, for something like "dirty" cgi scripts: PerlOptions +Parent PerlInterpMaxRequests 1 PerlInterpStart 1 PerlInterpMax 1 PerlResponseHandler ModPerl::Registry will use a fresh interpreter with its own namespace to handle each request. =head3 C Disable Cs, all compiled-in handlers are enabled by default. The option name is derived from the C name, by stripping the C and C parts of the word. So C becomes C which can be used to disable C: PerlOptions -Log Suppose one of the hosts does not want to allow users to configure C, C, C and EPerlE sections: PerlOptions -Authen -Authz -Access -Sections Or maybe everything but the response handler: PerlOptions None +Response =head3 C Resolve C at startup time, which includes loading the modules from disk if not already loaded. In mod_perl 1.0, configured C which are not a fully qualified subroutine names are resolved at request time, loading the handler module from disk if needed. In mod_perl 2.0, configured C are resolved at startup time. By default, modules are not auto-loaded during startup-time resolution. It is possible to enable this feature with: PerlOptions +Autoload Consider this configuration: PerlResponseHandler Apache::Magick In this case, C is the package name, and the subroutine name will default to I. If the C module is not already loaded, C will attempt to pull it in at startup time. With this option enabled you don't have to explicitly load the handler modules. For example you don't need to add: PerlModule Apache::Magick in our example. Another way to preload only specific modules is to add + when configuring those, for example: PerlResponseHandler +Apache::Magick will automatically preload the C module. =head3 C Setup the global C> object for use with Crequest|docs::2.0::api::Apache2::RequestUtil/C_request_>>. This setting is enabled by default during the C> phase for sections configured as: SetHandler perl-script ... but is not enabled by default for sections configured as: SetHandler modperl .... And can be disabled with: SetHandler perl-script PerlOptions -GlobalRequest ... Notice that if you need the global request object during other phases, you will need to explicitly enable it in the configuration file. You can also set that global object from the handler code, like so: sub handler { my $r = shift; Apache2::RequestUtil->request($r); ... } The C<+GlobalRequest> setting is needed for example if you use older versions of C to process the incoming request. Starting from version 2.93, C optionally accepts C<$r> as an argument to C, like so: sub handler { my $r = shift; my $q = CGI->new($r); ... } Remember that inside registry scripts you can always get C<$r> at the beginning of the script, since it gets wrapped inside a subroutine and accepts C<$r> as the first and the only argument. For example: #!/usr/bin/perl use CGI; my $r = shift; my $q = CGI->new($r); ... of course you won't be able to run this under mod_cgi, so you may need to do: #!/usr/bin/perl use CGI; my $q = $ENV{MOD_PERL} ? CGI->new(shift @_) : CGI->new(); ... in order to have the script running under mod_perl and mod_cgi. =head3 C Scan output for HTTP headers, same functionality as mod_perl 1.0's C, but more robust. This option is usually needs to be enabled for registry scripts which send the HTTP header with: print "Content-type: text/html\n\n"; =head3 C Turn on merging of C arrays. For example with a setting: PerlFixupHandler Apache2::FixupA PerlFixupHandler Apache2::FixupB a request for I only runs C (mod_perl 1.0 behavior). But with this configuration: PerlFixupHandler Apache2::FixupA PerlOptions +MergeHandlers PerlFixupHandler Apache2::FixupB a request for I will run both C and C handlers. =head3 C Set up environment variables for each request ala mod_cgi. When this option is enabled, I fiddles with the environment to make it appear as if the code is called under the mod_cgi handler. For example, the C<$ENV{QUERY_STRING}> environment variable is initialized with the contents of I, and the value returned by I is put into C<$ENV{SERVER_NAME}>. But C<%ENV> population is expensive. Those who have moved to the Perl Apache API no longer need this extra C<%ENV> population, and can gain by disabling it. A code using the C module require C because that module relies on a properly populated CGI environment table. This option is enabled by default for sections configured as: SetHandler perl-script ... Since this option adds an overhead to each request, if you don't need this functionality you can turn it off for a certain section: SetHandler perl-script PerlOptions -SetupEnv ... or globally: PerlOptions -SetupEnv ... and then it'll affect the whole server. It can still be enabled for sections that need this functionality. When this option is disabled you can still read environment variables set by you. For example when you use the following configuration: PerlOptions -SetupEnv PerlModule ModPerl::Registry PerlSetEnv TEST hi SetHandler perl-script PerlResponseHandler ModPerl::Registry Options +ExecCGI and you issue a request for this script: setupenvoff.pl -------------- use Data::Dumper; my $r = Apache2::RequestUtil->request(); $r->content_type('text/plain'); print Dumper(\%ENV); you should see something like this: $VAR1 = { 'GATEWAY_INTERFACE' => 'CGI-Perl/1.1', 'MOD_PERL' => 'mod_perl/2.0.1', 'PATH' => 'bin:/usr/bin', 'TEST' => 'hi' }; Notice that we have got the value of the environment variable I. =head2 C C instructs mod_perl to pass the environment variables you specify to your mod_perl handlers. This is useful if you need to set the same environment variables for your shell as well as mod_perl. For example if you had this in your .bash_profile: export ORACLE_HOME=/oracle And defined the following in your I: PerlPassEnv ORACLE_HOME The your mod_perl handlers would have access to the value via the standard Perl mechanism: my $oracle_home = $ENV{'ORACLE_HOME'}; See also: L. =head2 C PerlPostConfigRequire /home/httpd/perl/lib/startup.pl is equivalent to Perl's: require "/home/httpd/perl/lib/startup.pl"; A C filename argument can be absolute or relative to C or a filepath in Perl's C<@INC>. You can pass one or more filenames as arguments to C: PerlPostConfigRequire path1/startup.pl path2/startup.pl C is used to load files with Perl code to be run at the server startup. It's not executed as soon as it is encountered, but L during the server startup. Most of the time you should be using this directive. For example to preload some modules or run things at the server startup). Only if you need to load modules that introduce new configuration directives, used later in the configuration file you should use C>. As with any file with Perl code that gets C'd or C'd, it must return a I value. To ensure that this happens don't forget to add C<1;> at the end of F>. See also: C> and C>. See also: L. =head2 C C does the same thing as C>, but you have almost no control of L. Therefore you should be using either C> (executes immediately) or C> (executes just before the end of the server startup) instead. Most of the time you want to use the latter. See also: L. =head2 C C allows you to specify system environment variables and pass them into your mod_perl handlers. These values are then available through the normal perl C<%ENV> mechanisms. For example: PerlSetEnv TEMPLATE_PATH /usr/share/templates would create C<$ENV{'TEMPLATE_PATH'}> and set it to I. See also: L. =head2 C C allows you to pass variables into your mod_perl handlers from your I. This method is preferable to using C or Apache's C and C methods because of the overhead of having to populate C<%ENV> for each request. An example of how this can be used is: PerlSetVar foo bar To retrieve the value of that variable in your Perl code you would use: my $foo = $r->dir_config('foo'); In this example C<$foo> would then hold the value 'bar'. B that these directives are parsed at request time which is a slower method than using L See also: L. =head2 C Now you can pass any Perl's command line switches in I using the C directive. For example to enable warnings and Taint checking add: PerlSwitches -wT As an alternative to using C in I to adjust C<@INC>, now you can use the command line switch C<-I> to do that: PerlSwitches -I/home/stas/modperl You could also use C<-Mlib=/home/stas/modperl> which is the exact equivalent as C, but it's broken on certain platforms/version (e.g. Darwin/5.6.0). C is removing duplicated entries, whereas C<-I> does not. See also: L. =head2 C mod_perl 2.0 provides two types of C handlers: C and C. The C directive is only relevant for response phase handlers. It doesn't affect other phases. See also: L. =head3 C Configured as: SetHandler modperl The bare mod_perl handler type, which just calls the C's callback function. If you don't need the features provided by the I handler, with the C handler, you can gain even more performance. (This handler isn't available in mod_perl 1.0.) Unless the C callback, running under the C handler, is configured with: PerlOptions +SetupEnv or calls: $r->subprocess_env; in a void context with no arguments (which has the same effect as C for the handler that called it), only the following environment variables are accessible via C<%ENV>: =over =item * C and C (always) =item * C and C (if you had them defined in the shell or I) =back Therefore if you don't want to add the overhead of populating C<%ENV>, when you simply want to pass some configuration variables from I, consider using C and C instead of C and C. In your code you can retrieve the values using the C method. For example if you set in I: SetHandler modperl PerlResponseHandler Apache2::VarTest PerlSetVar VarTest VarTestValue this value can be retrieved inside C with: $r->dir_config('VarTest'); Alternatively use the Apache core directives C and C, which always populate Csubprocess_env>, but this doesn't happen until the Apache I phase, which could be too late for your needs. Notice also that this handler does not reset C<%ENV> after each request's response phase, so if one response handler has changed C<%ENV> without localizing the change, it'll affect other handlers running after it as well. =head3 C Configured as: SetHandler perl-script Most mod_perl handlers use the I handler. Among other things it does: =over =item * C is in effect only during the PerlResponseHandler phase unless: PerlOptions -GlobalRequest is specified. =item * C is in effect unless: PerlOptions -SetupEnv is specified. =item * C and C get tied to the request object C<$r>, which makes possible to read from C and print directly to C via C, instead of implicit calls like C<$r-Eputs()>. =item * Several special global Perl variables are saved before the response handler is called and restored afterwards (similar to mod_perl 1.0). This includes: C<%ENV>, C<@INC>, C<$/>, C's C<$|> and C blocks array (C). =item * Entries added to C<%ENV> are passed on to the C table, and are thus accessible via Csubprocess_env> during the later C and C phases. =back =head3 Examples Let's demonstrate the differences between the C and the C core handlers in the following example, which represents a simple mod_perl response handler which prints out the environment variables as seen by it: file:MyApache2/PrintEnv1.pm ----------------------- package MyApache2::PrintEnv1; use strict; use Apache2::RequestRec (); # for $r->content_type use Apache2::RequestIO (); # for print use Apache2::Const -compile => ':common'; sub handler { my $r = shift; $r->content_type('text/plain'); for (sort keys %ENV){ print "$_ => $ENV{$_}\n"; } return Apache2::Const::OK; } 1; This is the required configuration: PerlModule MyApache2::PrintEnv1 SetHandler perl-script PerlResponseHandler MyApache2::PrintEnv1 Now issue a request to I and you should see all the environment variables printed out. Here is the same response handler, adjusted to work with the C core handler: file:MyApache2/PrintEnv2.pm ------------------------ package MyApache2::PrintEnv2; use strict; use Apache2::RequestRec (); # for $r->content_type use Apache2::RequestIO (); # for $r->print use Apache2::Const -compile => ':common'; sub handler { my $r = shift; $r->content_type('text/plain'); $r->subprocess_env; for (sort keys %ENV){ $r->print("$_ => $ENV{$_}\n"); } return Apache2::Const::OK; } 1; The configuration now will look as: PerlModule MyApache2::PrintEnv2 SetHandler modperl PerlResponseHandler MyApache2::PrintEnv2 C cannot use C and therefore uses C<$r-Eprint()> to generate a response. Under the C core handler C<%ENV> is not populated by default, therefore C is called in a void context. Alternatively we could configure this section to do: PerlOptions +SetupEnv If you issue a request to I, you should see all the environment variables printed out as with I. =head1 Server Life Cycle Handlers Directives See L. =head2 C See C>. =head2 C See C>. =head2 C See C>. =head2 C See C>. =head1 Protocol Handlers Directives See L. =head2 C See C>. =head2 C See C>. =head1 Filter Handlers Directives mod_perl filters are described in the L, C> and C> manpages. The following filter handler configuration directives are available: =head2 C See C>. =head2 C See C>. =head2 C See C>. =head2 C See C>. =head1 HTTP Protocol Handlers Directives See L. =head2 C See C>. =head2 C See C>. =head2 C See C>. =head2 C See C>. =head2 C See C>. =head2 C See C>. =head2 C See C>. =head2 C See C>. =head2 C See C>. =head2 C See C>. =head2 C See C>. =head2 C See C>. =head2 C See C>. =head1 Threads Mode Specific Directives These directives are enabled only in a threaded mod_perl+Apache combo: =head2 C The number of interpreters to clone at startup time. Default value: 3 See also: L. =head2 C If all running interpreters are in use, mod_perl will clone new interpreters to handle the request, up until this number of interpreters is reached. when C is reached, mod_perl will block (via COND_WAIT()) until one becomes available (signaled via COND_SIGNAL()). Default value: 5 See also: L. =head2 C The minimum number of available interpreters this parameter will clone interpreters up to C, before a request comes in. Default value: 3 See also: L. =head2 C mod_perl will throttle down the number of interpreters to this number as those in use become available. Default value: 3 =head2 C The maximum number of requests an interpreter should serve, the interpreter is destroyed when the number is reached and replaced with a fresh clone. Default value: 2000 See also: L. =head2 C As mentioned, when a request in a threaded mpm is handled by mod_perl, an interpreter must be pulled from the interpreter pool. The interpreter is then only available to the thread that selected it, until it is released back into the interpreter pool. By default, an interpreter will be held for the lifetime of the request, equivalent to this configuration: PerlInterpScope request For example, if a C is configured, an interpreter will be selected before it is run and not released until after the logging phase. Interpreters will be shared across sub-requests by default, however, it is possible to configure the interpreter scope to be per-sub-request on a per-directory basis: PerlInterpScope subrequest With this configuration, an autoindex generated page, for example, would select an interpreter for each item in the listing that is configured with a Perl*Handler. It is also possible to configure the scope to be per-handler: PerlInterpScope handler For example if C is configured, an interpreter will be selected before running the handler, and put back immediately afterwards, before Apache moves onto the next phase. If a C is configured further down the chain, another interpreter will be selected and again put back afterwards, before C is run. For protocol handlers, the interpreter is held for the lifetime of the connection. However, a C protocol module might hook into mod_perl (e.g. mod_ftp) and provide a C record. In this case, the default scope is that of the request. Should a mod_perl handler want to maintain state for the lifetime of an ftp connection, it is possible to do so on a per-virtualhost basis: PerlInterpScope connection Default value: C See also: L. =head1 Debug Directives =head2 C The C is used for tracing the mod_perl execution. This directive is enabled when mod_perl is compiled with the C option. To enable tracing, add to I: PerlTrace [level] where C is either: all which sets maximum logging and debugging levels; a combination of one or more option letters from the following list: a Apache API interaction c configuration for directive handlers d directive processing f filters e environment variables g globals management h handlers i interpreter pool management m memory allocations o I/O r Perl runtime interaction s Perl sections t benchmark-ish timings Tracing options add to the previous setting and don't override it. So for example: PerlTrace c ... PerlTrace f will set tracing level first to 'c' and later to 'cf'. If you wish to override settings, unset any previous setting by assigning 0 (zero), like so: PerlTrace c ... PerlTrace 0 PerlTrace f now the tracing level is set only to 'f'. You can't mix the number 0 with letters, it must be alone. When C is not specified, the tracing level will be set to the value of the C<$ENV{MOD_PERL_TRACE}> environment variable. See also: L. =head1 mod_perl Directives Argument Types and Allowed Location The following table shows where in the configuration files mod_perl configuration directives are allowed to appear, what kind and how many arguments they expect: General directives: Directive Arguments Scope -------------------------------------------- PerlSwitches ITERATE SRV PerlRequire ITERATE SRV PerlConfigRequire ITERATE SRV PerlPostConfigRequire ITERATE SRC PerlModule ITERATE SRV PerlLoadModule RAW_ARGS SRV PerlOptions ITERATE DIR PerlSetVar TAKE2 DIR PerlAddVar ITERATE2 DIR PerlSetEnv TAKE2 DIR PerlPassEnv TAKE1 SRV Sections RAW_ARGS SRV PerlTrace TAKE1 SRV Handler assignment directives: Directive Arguments Scope -------------------------------------------- PerlOpenLogsHandler ITERATE SRV PerlPostConfigHandler ITERATE SRV PerlChildInitHandler ITERATE SRV PerlChildExitHandler ITERATE SRV PerlPreConnectionHandler ITERATE SRV PerlProcessConnectionHandler ITERATE SRV PerlPostReadRequestHandler ITERATE SRV PerlTransHandler ITERATE SRV PerlMapToStorageHandler ITERATE SRV PerlInitHandler ITERATE DIR PerlHeaderParserHandler ITERATE DIR PerlAccessHandler ITERATE DIR PerlAuthenHandler ITERATE DIR PerlAuthzHandler ITERATE DIR PerlTypeHandler ITERATE DIR PerlFixupHandler ITERATE DIR PerlResponseHandler ITERATE DIR PerlLogHandler ITERATE DIR PerlCleanupHandler ITERATE DIR PerlInputFilterHandler ITERATE DIR PerlOutputFilterHandler ITERATE DIR PerlSetInputFilter ITERATE DIR PerlSetOutputFilter ITERATE DIR Perl Interpreter management directives: Directive Arguments Scope -------------------------------------------- PerlInterpStart TAKE1 SRV PerlInterpMax TAKE1 SRV PerlInterpMinSpare TAKE1 SRV PerlInterpMaxSpare TAKE1 SRV PerlInterpMaxRequests TAKE1 SRV PerlInterpScope TAKE1 DIR mod_perl 1.0 back-compatibility directives: Directive Arguments Scope -------------------------------------------- PerlHandler ITERATE DIR PerlSendHeader FLAG DIR PerlSetupEnv FLAG DIR PerlTaintCheck FLAG SRV PerlWarn FLAG SRV The I column represents the type of arguments directives accepts, where: =over =item ITERATE Expects a list of arguments. =item ITERATE2 Expects one argument, followed by at least one or more arguments. =item TAKE1 Expects one argument only. =item TAKE2 Expects two arguments only. =item FLAG One of C or C (case insensitive). =item RAW_ARGS The function parses the command line by itself. =back The I column shows the location the directives are allowed to appear in: =over =item SRV Global configuration and CVirtualHostE> (mnemonic: I). These directives are defined as C in the source code. =item DIR CDirectoryE>, CLocationE>, CFilesE> and all their regular expression variants (mnemonic: I). These directives can also appear in I<.htaccess> files. These directives are defined as C in the source code. These directives can also appear in the global server configuration and CVirtualHostE>. =back Apache specifies other allowed location types which are currently not used by the core mod_perl directives and their definition can be found in I (hint: search for C). Also see L. =head1 Server Startup Options Retrieval Inside I one can do conditional configuration based on the define options passed at the server startup. For example: use Apache::DB (); Apache::DB->init; PerlFixupHandler Apache::DB So only when the server is started as: % httpd C<-DPERLDB> ... The configuration inside C will have an effect. If you want to have some configuration section to have an effect if a certain define wasn't defined use C, for example here is the opposite of the previous example: # ... If you need to access any of the startup defines in the Perl code you use C>. For example in a startup file you can say: use Apache2::ServerUtil (); if (Apache2::ServerUtil::exists_config_define("PERLDB")) { require Apache::DB; Apache::DB->init; } For example to check whether the server has been started in a single mode use: if (Apache2::ServerUtil::exists_config_define("ONE_PROCESS")) { print "Running in a single mode"; } =head2 C Define Option When running under mod_perl 2.0 a special configuration "define" symbol C is enabled internally, as if the server had been started with C<-DMODPERL2>. For example this can be used to write a configuration file which needs to do something different whether it's running under mod_perl 1.0 or 2.0: # 2.0 configuration # else From within Perl code this can be tested with C>, for example: use Apache2::ServerUtil (); if (Apache2::ServerUtil::exists_config_define("MODPERL2")) { # some 2.0 specific code } =head1 Perl Interface to the Apache Configuration Tree For now refer to the L manpage and the test I in the mod_perl source distribution. META: need help to write the tutorial section on this with examples. =head1 Adjusting C<@INC> You can always adjust contents of C<@INC> before the server starts. There are several ways to do that. =over =item * I In L you can use the C pragma like so: use lib qw(/home/httpd/project1/lib /tmp/lib); use lib qw(/home/httpd/project2/lib); =item * I In I you can use the C directive to pass arguments to perl as you do from the command line, e.g.: PerlSwitches -I/home/httpd/project1/lib -I/tmp/lib PerlSwitches -I/home/httpd/project2/lib =back =head2 C and C Environment Variables The effect of the C and C environment variables on C<@INC> is described in the I manpage. mod_perl 2.0 doesn't do anything special about them. It's important to remind that both C and C are ignored when the taint mode (C) is in effect. Since you want to make sure that your mod_perl server is running under the taint mode, you can't use the C and C environment variables. However there is the I module on CPAN, which, if loaded, bypasses perl's security and will affect C<@INC>. Use it only if you know what you are doing. =head2 Modifying C<@INC> on a Per-VirtualHost If Perl used with mod_perl was built with ithreads support one can specify different C<@INC> values for different VirtualHosts, using a combination of C> and C>. For example: ServerName dev1 PerlOptions +Parent PerlSwitches -I/home/dev1/lib/perl ServerName dev2 PerlOptions +Parent PerlSwitches -I/home/dev2/lib/perl This technique works under any MPM with ithreads-enabled perl. It's just that under prefork your procs will be huge, because you will build a pool of interpreters in each process. While the same happens under threaded mpm, there you have many threads per process, so you need just 1 or 2 procs and therefore less memory will be used. =head1 General Issues =head1 Maintainers Maintainer is the person(s) you should contact with updates, corrections and patches. =over =item * Stas Bekman [http://stason.org/] =back =head1 Authors =over =item * Doug MacEachern Edougm (at) covalent.netE =item * Stas Bekman [http://stason.org/] =back Only the major authors are listed above. For contributors see the Changes file. =cut