문제

I need to change the alfresco explorer and share url using proxy. How to change the url?

My current url is http://System1:8080/alfresco, http://System1:8080/share

I need to change to http://kroxx, http://wiks

도움이 되었습니까?

해결책

You need to configure both servers to produce the correct links. This configuration should go in your alfresco-global.properties, making sure that each WAR file accesses its relevant configuration entries:

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

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

You most likely need also to change your Share configuration in order for CMIS to properly produce links to your public Alfresco URLs. The following goes to your 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>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top