| Jean-Michel Houmard 2004-11-11, 5:50 pm |
| Hi,
We need to send URL of a given application to a dedicated managed server (7126), the rest on the "default" managed server (7122). The URL may come in uppercase or in lowercase. I do not understand in the httpd.conf below, why only the "/db/owa/pp_pack" Ur
ls are sent to port 7126, but not the "/db/owa/PP_PACK" which go the the 7122.
Thank's for your help.
<IfModule mod_weblogic.c>
<Location /db/owa/pp_pack>
WebLogicHost lidanl.pt.ch
WebLogicPort 7126
SetHandler weblogic-handler
Order allow,deny
Allow from all
</Location>
<Location /db/owa/PP_PACK>
WebLogicHost lidanl.pt.ch
WebLogicPort 7126
SetHandler weblogic-handler
Order allow,deny
Allow from all
</Location>
<Location /db>
WebLogicHost lidanl.pt.ch
WebLogicPort 7122
Idempotent OFF
SetHandler weblogic-handler
Order allow,deny
Allow from all
</Location>
</IfModule>
|