On 9/11/07, Joshua Slive <[EMAIL PROTECTED]> wrote:

> http://wiki.apache.org/httpd/WatchingHttpHeaders
>
> > ProxyPass /mingle/ http://192.168.50.89:7979/
> > ProxyPassReverse /mingle/ http://192.168.50.89:7979/
> >
> > <Location /mingle/ >
> >     ProxyPass http://192.168.50.89:7979/
> >      ProxyPassReverse http://192.168.50.89:7979/
> > </Location>
>
> Don't use both of these. One ProxyPass and ProxyPassReverse is sufficient.
>

Also, you need to identify the full URL on the ProxyPass, unless your
'mingle' application is
the ROOT application in Tomcat.

For example:

<Location /mingle>
    ProxyPass http://192.168.50.89:7979/mingle
    ProxyPassReverse http://192.168.50.89:7979/mingle
</Location>

-- brian

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to