You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Ian Holsman <ia...@cnet.com> on 2001/11/17 23:25:57 UTC

Proxy & Filters

Just came across something weird.
I can't get a filter to run on top of a
proxied file...
I think it is just me being stupid..

but the following doesn't seem to parse the SSI commands
coming through ;(

<Locaton /foo>
    Setoutputfilter INCLUDES
    ProxyPass http://foo/bar
</Location>



Re: Proxy & Filters

Posted by Justin Erenkrantz <je...@ebuilt.com>.
On Sat, Nov 17, 2001 at 02:25:57PM -0800, Ian Holsman wrote:
> Just came across something weird.
> I can't get a filter to run on top of a
> proxied file...
> I think it is just me being stupid..
> 
> but the following doesn't seem to parse the SSI commands
> coming through ;(
> 
> <Locaton /foo>
>    Setoutputfilter INCLUDES
>    ProxyPass http://foo/bar
> </Location>

<Location /proxy-test>
ProxyPass http://localhost:8080/
SetOutputFilter Includes
</Location>

FWIW, I just tried this with HEAD and it looks okay to me.  It 
parsed all of the SSIs correctly on the proxy server (I used
the /error/include/*.html files on 8080).  -- justin