2014-02-24 10 views
0

我需要更改露天瀏覽器並使用代理共享網址。如何更改網址?如何使用代理更改戶外網址

我當前的URL爲http://System1:8080/alfrescohttp://System1:8080/share

我需要改變,以http://kroxxhttp://wiks

回答

3

您需要兩臺服務器配置爲產生正確的鏈接。這個配置應該在你的alfresco-global.properties,確保每個WAR文件訪問它的相關配置項:

alfresco.context= 
alfresco.host=kroxx 
alfresco.port=80 
alfresco.protocol=http 

share.context= 
share.host=wikis 
share.port=80 
share.protocol=http 

你最有可能need also改變爲了您共享配置CMIS正常生產鏈接到您的公共露天的網址。下面進入你的share-config-custom.xml

<alfresco-config> 
    <config evaluator="string-compare" condition="Server"> 
    <server> 
     <scheme>http</scheme> 
     <hostname>kroxx</hostname> 
     <port>80</port> 
    </server> 
    </config> 
</alfresco-config> 
+0

'您-pulic主機'要放什麼「你的公共 - 主機」 – samnaction

+0

我改變了配置使用你在你的問題提供了什麼。它必須是公開可見的URL – skuro