Followers

Thursday, June 9, 2016

Implement the weblogic proxy plugin for the Apache web server.


Copy the mod_wl_20.so  to <APACHE_HOME>\modules. 

Modify the httpd.conf file located in <APACHE_HOME>\conf

LoadMoadule:

to load mod_wl_20.so and add the module specific configuration.


Cluster Configuration:

<IfModule mod_weblogic.c>

    WebLogicCluster 127.0.0.1:7003,127.0.0.1:7005,127.0.0.1:7007

    MatchExpression /*

</IfModule>

<Location /weblogic>

    SetHandler weblogic-handler

    WebLogicCluster 127.0.0.1:7003,127.0.0.1:7005,127.0.0.1:7007

    DebugConfigInfo ON

    PathTrim /weblogic

</Location>

No comments:

Post a Comment