-
Bug
-
Resolution: Fixed
-
High
-
4.1
-
4.01
-
A config changed happened between Tomcat 5.5 and 6 ( JIRA 4.0 uses 5.5, JIRA 4.1 uses 6 ). Now one must put SSLEnabled="True" in the Connector which is not present in JIRA's server.xml for 4.1:
<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" useBodyEncodingForURI="true"/>
should be
<Connector port="8443" maxHttpHeaderSize="8192" SSLEnabled="true" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" disableUploadTimeout="true" acceptCount="100" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" useBodyEncodingForURI="true"/>
Will update the 4.1 documentation in the meantime