> I
> played with setting my dispatch handler as a PerlTransHandler, but
> mod_proxy seems
> to get in there first no matter how I setup the config file, so I got it
> in at the
> PerlPostReadRequestHandler.  But for what it's worth, examining proxyreq
> value in
> later phases (access, response) it still reports =1, whether I
> '$r->proxyreq(0)' or
> not.  I'll respond more directly to Geoff's note if I have anything
> useful to report.

if you have the tuits, try changing modperl_hooks.c from this

ap_hook_trans(modperl_trans_handler, NULL, NULL, APR_HOOK_FIRST);

to this

ap_hook_trans(modperl_trans_handler, NULL, NULL, APR_HOOK_REALLY_FIRST);

don't rerun 'perl Makefile.PL...' - just make && sudo make install and see
if setting proxyreq(0) in a PerlTransHandler then holds.  if it does, then
it's a symptom of a larger issue I've been meaning to tackle.

> Thanks for the pointer to modperlcookbook (have it, use it, love it :)

:)

--Geoff


-- 
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html

Reply via email to