程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> WIN2003上Apache2+IIS6+Tomcat5之多站點完美配置篇

WIN2003上Apache2+IIS6+Tomcat5之多站點完美配置篇

編輯:關於JSP

    本來以為上一次的配置就搞定了,結果本地測試好好的,到了服務器上調試就完蛋了,本地只測試了一個asp站和一個jsp(SUN企業級應用的首選)站,而實際情況是多個asp站和我的jsp(SUN企業級應用的首選)站,又試了兩次還是不行,終於在第三次嘗試後搞定了,寫下來做個紀念。

第一次嘗試使用:

<VirtualHost *:80>
   ServerAdmin [email protected]
  ServerName www.5hope.com
   DcumentRoot "G:5hope
   DirectoryIndex index.html index.htm index.asp 
  ProxyPass / http://www.5hope.com:88/
  ProxyPassReverse / www.5hope.com:88/
</VirtualHost>


<VirtualHost *:80>
    ServerAdmin [email protected]
  ServerName www.shundabanjia.com 
  DocumentRoot "G:wuyubingwww"
  DirectoryIndex index.html index.htm index.asp 
  ProxyPass / http://www.shundabanjia.com:88/
  ProxyPassReverse / http://www.shundabanjia.com:88/
</VirtualHost>

本以為這樣設置多站點就搞定了,結果發現只識別第一個站點,訪問別的站點都是這個站的內容,折騰了一上午,沒成功。

第二次嘗試使用:

<VirtualHost *:80>
 #添加了這個屬性**********
 ProxyPreserveHost On
ServerAdmin [email protected] 
  ServerName www.shundabanjia.com 
  DocumentRoot "G:wuyubingwww"
  DirectoryIndex index.html index.htm index.asp 
  ProxyPass / http://www.shundabanjia.com:88/
  ProxyPassReverse / http://www.shundabanjia.com:88/
</VirtualHost>

LoadModule jk_module modules/mod_jk.so 
JkWorkersFile "D: omcat(一個很好用的JSP運行平台)5.0.28confworkers.properties"
<VirtualHost *:80>
    ServerAdmin [email protected]   
    ServerName www.openria.cn
    DirectoryIndex index.html index.htm index.jsp(SUN企業級應用的首選)
    JkMount /* ajp13   
    JkAutoAlias "D: omcat(一個很好用的JSP運行平台)-5.0.28webappsia"  
    <Directory "D: omcat(一個很好用的JSP運行平台)-5.0.28webappsia">
       Options Indexes FollowSymLinks
       allow from all
    </Directory>
</VirtualHost>

這回經過查官方資料,發現了一個屬性,叫ProxyPreserveHost On,試了一下,是可以用實現多個虛擬的asp站點了,但是和我的tomcat(一個很好用的JSP運行平台)站點定義沖突,訪問不了jsp(SUN企業級應用的首選)站,又不行,只好再找。

第三次嘗試使用:

NameVirtualHost *:80

<VirtualHost *:80>
  ProxyPreserveHost On
  ServerAdmin [email protected]
  ServerName www.shundabanjia.com 
  DocumentRoot "G:wuyubingwww"
  DirectoryIndex index.html index.htm index.asp 
  ProxyPass / http://www.shundabanjia.com:88/
  ProxyPassReverse / http://www.shundabanjia.com:88/
</VirtualHost>

LoadModule jk_module modules/mod_jk.so 
JkWorkersFile "D: omcat(一個很好用的JSP運行平台)5.0.28confworkers.properties"
<VirtualHost *:80>
    ServerAdmin [email protected]   
    ServerName www.openria.cn
    DirectoryIndex index.html index.htm index.jsp(SUN企業級應用的首選)
    JkMount /* ajp13   
    JkAutoAlias "D: omcat(一個很好用的JSP運行平台)-5.0.28webappsia"  
    <Directory "D: omcat(一個很好用的JSP運行平台)-5.0.28webappsia">
       Options Indexes FollowSymLinks
       allow from all
    </Directory>
</VirtualHost>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved