The portal itself, upon initial request, redirects the client a couple of times before it finally rests at a default home page.
I can get it working just fine if I use this construct: <IfModule mod_proxy.c> ProxyRequests Off ProxyPreserveHost On ProxyPass / http://localhost:8080/ ProxyPassReverse / http://localhost:8080/ </IfModule>However I don't want to proxy everything, just requests to the portal. When I try this:
<IfModule mod_proxy.c> ProxyRequests Off ProxyPreserveHost On ProxyPass /portal/ http://localhost:8080/ ProxyPassReverse /portal/ http://localhost:8080/ </IfModule>It fails. I have a feeling it has to do with the multiple redirects the portal does prior to presenting its initial home page, but I'm not sure.
I have heard that mod_ajp might be a solution to this but I even less familiar with it than I am apache's reverse proxy methods.
Any advice would be appreciated. Thanks - Tod --------------------------------------------------------------------- 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: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx