So if my httpd.conf has multiple <Perl> sections and I am doing something like
this in the first one.

        for (`env`) {
         next unless /^X_/;
         /(.*)=(.*)/;
         $ENV{$1} = $2;
         push @PassEnv, $1;
         #print "$_\n";
        }

and I then do

        my $somevariable = $ENV{'X_KEY'};

in other Perl sections are these variables defined and what 
are their values.

and is %ENV also populated in those Perl sections?

Do I have to repeat the above code in every Perl Section where I want
access to these values?


----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.

Reply via email to