dougm 01/11/29 20:45:48
Modified: perl-framework/Apache-Test/lib/Apache TestConfig.pm
Log:
extra.conf needs to be Included before ssl.conf, else LimitRequest*
are not inherited by the ssl vhost and a bunch of tests fail in apache/limits
Revision Changes Path
1.89 +4 -1
httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm
Index: TestConfig.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- TestConfig.pm 2001/11/22 03:16:19 1.88
+++ TestConfig.pm 2001/11/30 04:45:48 1.89
@@ -917,7 +917,10 @@
close $out;
}
- return [EMAIL PROTECTED];
+ #we changed order to give ssl the first port after 8529
+ #but we want extra.conf Included first so vhosts inherit base config
+ #such as LimitRequest*
+ return [ sort @extra_conf ];
}
#XXX: just a quick hack to support t/TEST -ssl