Re: [EMAIL PROTECTED] ProxyPass with exceptions

2006-09-22 Thread Nick Ascione
I just had a similar problem. What is happening is as follows ProxyPass /cob http://192.168.1.1/cob ProxyPassReverse /cob http://192.168.1.1/cob catches /cob, but not cob/webappage.nsf the proxypass is working on the directory level only and not whats below it in the directory tree. So ...

Re: [EMAIL PROTECTED] ProxyPass with exceptions

2006-09-21 Thread Richard de Vries
Sorry, should have been: ProxyPass http://192.168.1.1/cob ProxyPassReverse http://192.168.1.1/cob ProxyPass http://192.168.1.3/ ProxyPassReverse http://192.168.1.3/ --- Richard de Vries <[EMAIL PROTECTED]> wrote: > How about if you split your ProxyPass directives up > in > Locatio

Re: [EMAIL PROTECTED] ProxyPass with exceptions

2006-09-21 Thread Richard de Vries
How about if you split your ProxyPass directives up in Location Blocks. Does that make a difference? i.e. ProxyPass /cob http://192.168.1.1/cob ProxyPassReverse /cob http://192.168.1.1/cob ProxyPass / http://192.168.1.3/ ProxyPassReverse / http://192.168.1.3/ --- [EMAIL PROTECTED]

[EMAIL PROTECTED] ProxyPass with exceptions

2006-09-21 Thread sniedermeyer
I'm trying to use the ProxyPass directive but am having mixed results on our Apache 2.2.2 reverse proxy server. Here is my config: ProxyPass /cob http://192.168.1.1/cob ProxyPassReverse /cob http://192.168.1.1/cob ProxyPass /web http://192.168.1.1/web ProxyPassReverse /web http://192.168.1.1/web