Ask the Community
Groups
Disabling SSL access to the Web Application - Connect IT Community | Kaseya
<main> <article class="userContent"> <h3 data-id="question"><strong>QUESTION:</strong></h3> <p>How do I disable SSL access to the Web Application?</p> <p> </p> <h3 data-id="resolution"><strong>RESOLUTION:</strong></h3> <ul><li>Create a copy of TRAVERSE_HOME/apps/tomcat/conf/server.xml and place outside of the Traverse installation folder. This will allow for the quick restoration of the original copy, if required. Note: TRAVERSE_HOME should be replaced by the actual installation folder.</li> <li>To disable SSL access to the Web Application, find the following section within TRAVERSE_HOME/apps/tomcat/conf/server.xml:</li> </ul><pre class="code codeBlock" spellcheck="false" tabindex="0"><!-- define ssl-enabled (https) request handler --><br> <Connector port="443" <br> minProcessors="20" maxProcessors="80"<br> enableLookups="false" allowChunking="false" <br> acceptCount="100" scheme="https" secure="true"<br> clientAuth="false" sslProtocol="TLS" protocols="TLSv1,TLSv1.1,TLSv1.2"<br> keystorePass="changeit" keystoreFile="../../plugin/web/webapp.keystore" <br> compression="off" debug="0"<br> URIEncoding="UTF-8" /></pre> <ul><li>Enclose the 'Connector' XML element between '<!--' and '-->' to remove this configuration. For example:</li> </ul><pre class="code codeBlock" spellcheck="false" tabindex="0"><!-- define ssl-enabled (https) request handler --><br><!-- disabled <br> <Connector port="443" <br> minProcessors="20" maxProcessors="80"<br> enableLookups="false" allowChunking="false" <br> acceptCount="100" scheme="https" secure="true"<br> clientAuth="false" sslProtocol="TLS" protocols="TLSv1,TLSv1.1,TLSv1.2"<br> keystorePass="changeit" keystoreFile="../../plugin/web/webapp.keystore" <br> compression="off" debug="0"<br> URIEncoding="UTF-8" /><br> --></pre> <ul><li>Then restart the Web Application to reload the modified configuration</li> <li>Should the Web Application fail to start, review the changes made to the file for any typographical errors. And if all else fails, you may revert to the original copy of the file.</li> <li>Please note that any changes to this file are not retained after an upgrade, and so may need to be re-applied after completion of upgrades.</li> </ul><p> </p> <p><strong>APPLIES TO </strong></p> <p>All versions of Traverse </p> <p> </p> <p><strong>REFERENCE </strong></p> <p>None</p> </article> </main>