Re: [apache-ssl] How to make ProxyPass work?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [apache-ssl] How to make ProxyPass work?



Well, it does work (for me at least it worked). Here is what I have

<IfModule mod_proxy.c>
    ProxyRequests On
</IfModule>

<VirtualHost XXX.XXX.XXX.XXX:80>
    DocumentRoot /usr/www/htdocs
    ServerName foo.domain.com

    UseCanonicalName on

    <IfModule mod_proxy.c>
      ProxyPass / http://foo2.otherdomain.com/
      ProxyPassReverse / http://foo2.otherdomain.com/
    </IfModule>

</VirtualHost>

Rob Moser wrote:

> Other than a couple of sensible comments that nonetheless turned out to be
> dead ends, I'm not hearning from anyone much about ProxyPass.  Does anyone
> out there use it at all, or should I start to suspect it simply doesn't work?
>
>         - rob moser.