having seen the possibilities from
/usr/share/doc/libapache-mod-perl/examples/perl_sections.txt
(schwartz's neat virtual host setup) i thought i'd give it
a whirl.
so i'm calling a perl script from within httpd.conf <perl> blocks,
yet none of the results seems to show up when i browse to
http://localhost/server-info ...
from httpd.conf:
<Perl>
do "/etc/apache/httpd.pl";
</Perl>
from httpd.pl:
$c = "NameVirtualHost 208.30.90.85";
Apache->httpd_conf($c);
print STDERR $c;
i know it gets to here, because $c gets printed...
but localhost/server-info shows no such directive having
taken effect...
do i need to do a USE or some such? what's missing?