I have Scalix 11.0 running on SuSE 10.1.
I have the following settings in my /var/opt/scalix/hl/tomcat/conf/server.xml file:
Code: Select all
<Connector port="8080" maxHttpHeaderSize="8192"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" redirectPort="8443" acceptCount="100"
connectionTimeout="20000" disableUploadTimeout="true"
URIEncoding="UTF-8" />
<Connector port="8443" maxHttpHeaderSize="8192"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
URIEncoding="UTF-8" />
<!-- I have configured the Tomcat Java instance with an SSL certificate and verified it is working correctly. -->
During the installation, I configured the services to connect to port 8080, and the Tomcat instance works for all the services except for my Scalix Search and Index service. My seperate apache2 instance is configured to listen on port 80 and the SIS service constantly (every 10 seconds) makes a request to it that 404s. I have (temporarily ?) added ' Include /etc/opt/scalix-tomcat/connector/ajp/app-hal.sis.conf' to my port 80 vhost instance in apache2, which seemingly is working.
I'm wondering if it is possible for me to configure the SIS service to make requests to port 8080 instead of 80?