Technical data

11 Installing and Configuring the Apache HTTP Server Plug-In
11-12 Administration Guide
<IfModule mod_weblogic.c>
WebLogicHost myweblogic.server.com
WebLogicPort 7001
MatchExpression *.jsp
MatchExpression *.xyz
</IfModule>
If you are proxying requests by MIME type to a cluster of WebLogic Servers,
use the
WebLogicCluster parameter instead of the WebLogicHost and
WebLogicPort parameters. For example:
<IfModule mod_weblogic.c>
WebLogicCluster w1s1.com:7001,w1s2.com:7001,w1s3.com:7001
MatchExpression *.jsp
MatchExpression *.xyz
</IfModule>
5. If you want to proxy requests by path, use the Location block and the
SetHandler statement. SetHandler specifies the handler for the Apache HTTP
Server Plug-In module. For example the following
Location block proxies all
requests containing the
/weblogic in the URL:
<Location /weblogic>
SetHandler weblogic-handler
</Location>
If you want to proxy requests to multiple clusters by path, you can use multiple
Location blocks and SetHandler statements.
For example:
<Location /x>
SetHandler weblogic-handler
WebLogicCluster cluster1
</Location>
<Location /y>
SetHandler weblogic-handler
WebLogicCluster cluster2
</Location>
<Location /z>
SetHandler weblogic-handler
WebLogicCluster cluster3