I think the easiest way to go about this would be to remove sac from the mod_jk configuration and open port 8080 for tomcat.
Since you didn't mention your OS I'll tell you how to do this for redhat. In /etc/httpd/conf.d you will see scalix-jk-common.conf. Edit that file and comment out the line
#JkMount /sac* worker1
Issue:
service httpd restart
and you will no longer see the sac page.
Then edit /opt/scalix-tomcat/conf/server.xml and uncomment this section:
Code: Select all
<!-- DISABLED BY SCALIX INSTALLER
<Connector port="8080"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" redirectPort="8443" acceptCount="100"
debug="0" connectionTimeout="20000"
disableUploadTimeout="true" />
DISABLED BY SCALIX INSTALLER -->
Remove the two lines that say "disabled by scalix installer" at the top and bottom of the section. Restart tomcat with
service scalix-tomcat restart
Now you will access sac with the url
server:8080/sac
Regards,
Don