On Feb 24, 2014, at 10:05 AM, Yann Ylavic <[email protected]> wrote:
> I use the following config : > > <VirtualHost 127.0.0.1:60080> > ServerName localhost:60080 > > RewriteEngine on > RewriteRule "^/(.*)$" "unix:/tmp/backend.sock|http://localhost/$1" [P,NE] > > <Proxy "unix:/tmp/backend.sock|http://localhost" disablereuse=off> > </Proxy> > </VirtualHost> > Why the <Proxy> container? What is that designed to do or what is it there for? I'm pretty sure that's the issue. You are just trying to Proxy all requests to the socket at /tmp/backend.sock, right?
