anonymous wrote : I can successfully redirect to the portal using mod_proxy 
and/or mod_rewrite to get to the portal under port 8080 but there are no images 
or decorations on the portal once it paints in the browser.

I'm faced with the same problem.  Basically followed the instructions here 
http://wiki.jboss.org/wiki/Wiki.jsp?page=UsingMod_proxyWithJBoss to setup 
mod_proxy with http. Portal works, I can register and get around portal, but 
content styling and images don't work.

Here is my httpd.conf


  | LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so
  | LoadModule proxy_balancer_module 
/usr/lib/apache2/modules/mod_proxy_balancer.so
  | LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so
  | 
  | <VirtualHost *>
  |   ServerName myhost.test.com
  |   ServerAlias www.test.com
  | 
  |   ProxyRequests Off
  |   ProxyPreserveHost On
  | 
  |   <Proxy balancer://mycluster>
  |     Order deny,allow
  |     Allow from all
  |     BalancerMember http://myhost:8080/portal
  |   </Proxy>
  |   ProxyPass /portal balancer://mycluster
  |   ProxyPassReverse /portal  http://myhost:8080/portal
  |   <Location /portal>
  |     Order allow,deny
  |     Allow from all
  |   </Location>
  | </VirtualHost>
  | 

Any suggestions?

Vance

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4125728#4125728

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4125728
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to