如何使用代理更改alfresco网址

时间:2014-02-24 11:08:47

标签: proxy alfresco reverse-proxy alfresco-share

我需要更改alfresco资源管理器并使用代理共享网址。如何更改网址?

我当前的网址是http://System1:8080/alfrescohttp://System1:8080/share

我需要更改为http://kroxxhttp://wiks

1 个答案:

答案 0 :(得分: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正确生成指向您的公共Alfresco网址的链接。以下内容适用于您的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>