Question

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

Was it helpful?

Solution

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>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top