reverse proxy(apache) doesn't load CSS and JS on weblogic server 11g
773673May 18 2010 — edited May 19 2010Helo,
i have apache(port 8080) and weblogic(port 7001) installed on one machine.
I have made an reverse proxy with apache and it partially works. Page loads up but it doesn't show any images or CSS styles. (only black text on white BG).
my setting in apache:
Listen 8080
ServerName http://localhost
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyRequests Off
ProxyPreserveHost On
<Location /e-xxx/app>
ProxyPass http://localhost:7001/e-xxx/app
ProxyPassReverse http://localhost:7001/e-xxx/app
</Location>
if i look at the source for favicon i get this url witch doesn't work:
http://localhost:8080/e-xxx/images/new/favicon.gif
but if i change port it work (of course):
http://localhost:7001/e-xxx/images/new/favicon.gif
Same story is with CSS and JS ! Proxy doesn't work properly.
The question is what must I set at apache server on at weblogic so CCS, images, JS and others would work?
I'm searching for an answer for 2 weeks. :S
I hope you can help me.
Best regards