in reply to mod_perl2 Apache VirtualHost ENV settings [OT?]

When you want to set up variables that are specific to a Location, Directory, or VirtualHost, use PerlSetVar.
  • Comment on Re: mod_perl2 Apache VirtualHost ENV settings [OT?]

Replies are listed 'Best First'.
Re^2: mod_perl2 Apache VirtualHost ENV settings [OT?]
by graq (Curate) on Feb 07, 2008 at 09:03 UTC
    This would mean doubling up on all the configs, setting SetENv for scripts and PerlSetVar for mod_perl ?

    -=( Graq )=-

      If you need to support CGI scripts that don't run under mod_perl, I would suggest you create a config file with a hash of the variables you need indexed by something like DocumentRoot that's available in $ENV for CGI scripts and accessible via the mod_perl API as well.