I have the following <Perl> block in my httpd.conf file which installs mod-perl handlers for a list of urls:
<Perl>
...
for my $uri (...) {
$Location{$uri} = ...;
}
</Perl>
If I wanted to move this code to a normal perl module, how should I
reference %Location?
Thanks,
ER
