On Thu, Oct 07, 2004 at 04:04:16PM -0400, Geoffrey Young wrote: > hi all... > > just FYI, 2.1 is failing t/modules/proxy.t with a 404. I've spent some time > this afternoon trying to see what (of importance) has changed in between 2.0 > and HEAD but I can't see where it is at the moment.
I tracked this down as far as the fact that mod_proxy in HEAD refuses to act as a forward proxy unless "ProxyRequests On" has been configured. So adding "ProxyRequests On" as below fixes the test but whether this should actually be considered a mod_proxy bug or not, I'm not sure. Index: t/response/TestModules/proxy.pm =================================================================== RCS file: /misc/pepper/cvs/root/modperl-2.0/t/response/TestModules/proxy.pm,v retrieving revision 1.6 diff -u -r1.6 proxy.pm --- t/response/TestModules/proxy.pm 23 Sep 2004 01:44:11 -0000 1.6 +++ t/response/TestModules/proxy.pm 11 Oct 2004 10:10:50 -0000 @@ -53,6 +53,7 @@ </IfModule> </Proxy> + ProxyRequests On PerlModule TestModules::proxy PerlTransHandler TestModules::proxy::proxy <Location /TestModules__proxy_real> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]