apache基于ssl配置weblogic(一)

1. 安装weblogic10、apache2.2

2. 从oracle下载mod_wl.so

3. 在http.conf中写:

    LoadModule weblogic_module modules/mod_wl.so
    <IfModule mod_weblogic.c>
        Include conf/Weblogic.conf
     </IfModule>

4. 新建Weblogic.conf文件

5. 写入:

    # Weblogic.conf file
    WebLogicHost localhost         
    WebLogicPort 7001
    SecureProxy ON
    MatchExpression /test-web/**   
    MatchExpression *.jsp
    MatchExpression *.do
    WLLogFile /tmp/wlproxy.log

以上操作能保证http状况下apache server和weblogic处于联通状态

猜你喜欢

转载自chengjisihan.iteye.com/blog/1415243
今日推荐