apache + weblogic 의 VirtualHost 설정방법

2014. 1. 10. 18:01IT/서버

1. weblogic 의 mod_wl_20.so를  apache/modules 디렉토리에 복사

2. apache 의 httpd.conf 수정


LoadModule weblogic_module modules/mod_wl_20.so


NameVirtualHost *:80


<VirtualHost *:80>

ServerName test.ilhoko.com

<Location / >

 SetHandler weblogic-handler

 WebLogicHost 192.168.0.10

 WebLogicPort 8001

 Debug ON

</Location>

</VirtaulHost>


<VirtualHost *:80>

ServerName dev.ilhoko.com

<Location / >

 SetHandler weblogic-handler

 WebLogicHost 192.168.0.10

 WebLogicPort 8002

 Debug ON

</Location>

</VirtaulHost>


3. httpd 구동 



반응형