[EMAIL PROTECTED] Name-based Virtual Hosts and Reverse Proxy with ProxyPreserveHost On

2006-05-12 Thread Brian Bonner
Hello. I have a Apache 2.2 setup in a reverse proxy configuration. On the Proxy Server I have: NameVirtualHost *:80 VirtualHost *:80 ServerAdmin [EMAIL PROTECTED] DocumentRoot /var/www/foo/html ServerName www.foo.com ErrorLog logs/www.foo.com-error_log CustomLog

[EMAIL PROTECTED] 408 Error with Apache HTTPD and Tomcat

2005-11-04 Thread Brian Bonner
I'm hoping someone on this list can help me. I posted on the tomcat-users list w/ no results. Here's the post: http://www.nabble.com/408-error-with-Form-Authentication-and-Proxy.-Doesn%27t-occur-with-Basic-Auth.-t474352.html#a1291455 I've seen several posts on the Tomcat list that describe a

[EMAIL PROTECTED] Redirect and ProxyPass or RewriteRule[P]

2005-10-31 Thread Brian Bonner
I'm using ProxyPass and ProxyPassReverse to delegate requests from Apache 2.0.55 to Tomcat 5.0.30. Here's what I have: ProxyPass / http://192.168.1.15:8082/internal/ ProxyPassReverse / http://192.168.1.15:8082/finternal/ This works fine, however I also want to add a Redirection for a

[EMAIL PROTECTED] Re: Redirect and ProxyPass or RewriteRule[P]

2005-10-31 Thread Brian Bonner
caveats or comments about this approach, please let me know. Thanks. Brian On 10/31/05, Brian Bonner [EMAIL PROTECTED] wrote: I'm using ProxyPass and ProxyPassReverse to delegate requests from Apache 2.0.55 to Tomcat 5.0.30. Here's what I have: ProxyPass / http://192.168.1.15:8082

[EMAIL PROTECTED] Re: Redirect and ProxyPass or RewriteRule[P]

2005-10-31 Thread Brian Bonner
://192.168.1.15:8082/internal/$1 [P] Thanks. On 10/31/05, Brian Bonner [EMAIL PROTECTED] wrote: It looks like: Rewrite will do the trick: RewriteRule ^/grant/evaluation$ http://192.168.1.15:8082/internal/resources/evaluation.html [P] RewriteRule ^/emp/int.xyz(.*)$ http://192.168.1.15:8082/internal

[EMAIL PROTECTED] Re: Redirect and ProxyPass or RewriteRule[P]

2005-10-31 Thread Brian Bonner
the [P], the browser doesn't show the new URL. I've tried adding RedirectMatch as follows: RedirectMatch ^/grant/evaluation$ http://%{SERVER_NAME}:%{SERVER_PORT}/resources/evaluation.html to no avail. SOS, Help. Brian On 10/31/05, Brian Bonner [EMAIL PROTECTED] wrote: And actually , I forgot

Re: [EMAIL PROTECTED] Redirect and ProxyPass or RewriteRule[P]

2005-10-31 Thread Brian Bonner
Joshua, thank you. That did the trick. I appreciate your help resolving this. On 10/31/05, Joshua Slive [EMAIL PROTECTED] wrote: On 10/31/05, Brian Bonner [EMAIL PROTECTED] wrote: I'm using ProxyPass and ProxyPassReverse to delegate requests from Apache 2.0.55 to Tomcat 5.0.30. Here's