[ale] apache and weblogic
matty91 at bellsouth.net
matty91 at bellsouth.net
Wed Mar 26 10:33:47 EST 2003
We use Weblogic 6.2 and 7.0 with iPlanet/Apache. Here are a couple of
examples which might get you started:
# The load/add modules are added my DSO/APXS
LoadModule weblogic_module libexec/mod_wl.so
AddModule mod_weblogic.c
# Clustered configurations
<IfModule mod_weblogic.c>
MatchExpression *.jsp
WebLogicCluster server1:7001,server2:7001,server3:7001
</IfModule>
# non-Clusterered configurations
<IfModule mod_weblogic.c>
MatchExpression *.jsp
WebLogicHost server1
WebLogicPort 7001
</IfModule>
# For IP-based server installs
<VirtualHost 1.1.1.1>
ServerName some.domain
<Location /apps >
SetHandler weblogic-handler
WebLogicCluster server1:7001,server2:7001,server3:7001
Debug ON
DebugConfigInfo ON
PathTrim /apps
ErrorPage http://my.domain/error.html
</Location>
</VirtualHost>
# For single server installs
<Location /apps >
SetHandler weblogic-handler
PathTrim /apps
</Location>
If you have further questions, ping me off list.
- Ryan
>
> here is the dilemma. I have a dev weblogic instance locked down to 3 unique
> ips.
> Sometimes we need to do testing and 3 ips are not enough.
>
> How to do request forwarding/proxying using apache?
>
> I have found that weblogic has a module for apache, but it is not installed
> here ..
> http://www.weblogic.com/docs51/admindocs/apache_bridge.html
>
> anyone has mod_wl.so for sunos weblogic 5.1 ?
>
> thanks,
> Tomas
>
> _______________________________________________
> Ale mailing list
> Ale at ale.org
> http://www.ale.org/mailman/listinfo/ale
>
_______________________________________________
Ale mailing list
Ale at ale.org
http://www.ale.org/mailman/listinfo/ale
More information about the Ale
mailing list