I'm not able to get *any* variables out from the apache server
environment. As you might be able to imagine, this is extremely
frustrating, and inhibits my ability to do anything of use with
mod_perl. My basic technique has been:
my $uri = $r->uri;
return unless $r->is_main();
my $subr = $r->lookup_uri($uri);
my $apachecertcomp = $subr->subprocess_env($certcomponent);
But this doesn't work. I also tried
my $var = $r->subprocess_env("VARIABLE_NAME");
And this does not work either. I really need to be able to use
environment variables that mod_ssl sets in my authentication handler.
Any ideas? Thanks!
--Ryan