apache weblogic-handler and alias directive
Hi allI have a running configuration using apache module mod_wl_22.so with virtualhosts.
My usual (running) config is similar to this one:
<VirtualHost *:80>
ServerName www.example.com
DefaultFileName /application
WebLogicHost localhost
WebLogicPort 7003
SetHandler weblogic-handler
</VirtualHost>
Using http://www.example.com in browser it correctly forward to the same host on the correct port and runs the application /application.
Now I need to "alias" a directory for images and other static files and if I write in the browser http://www.example.com/images/image1.jpg I'd like apache to serve the files outside of the application.
I tried to use this config:
My usual (running) config is similar to this one:
<VirtualHost *:80>
ServerName www.example.com
DefaultFileName /application
WebLogicHost localhost
WebLogicPort 7003
SetHandler weblogic-handler
</VirtualHost>
Using http://www.example.com in browser it correctly forward to the same host on the correct port and runs the application /application.
Now I need to "alias" a directory for images and other static files and if I write in the browser http://www.example.com/images/image1.jpg I'd like apache to serve the files outside of the application.
I tried to use this config:
0