Ask,
here is a patch for Apache::ProxyPassThru, fixing the bug that
multiple response headers are mungled into one (like double "Set-Cookie:"s)
I should apply this with my own proxy modules ... :)
--- ProxyPassThru.pm~ Tue Aug 21 08:06:24 2001
+++ ProxyPassThru.pm Fri Mar 8 15:23:04 2002
@@ -33,8 +33,9 @@
#feed reponse back into our request_rec*
$r->status($res->code);
$r->status_line($res->status_line);
+ my $table = $r->headers_out;
$res->scan(sub {
- $r->header_out(@_);
+ $table->add(@_);
});
$r->send_http_header();