Uploaded image for project: 'Jira Data Center'
  1. Jira Data Center
  2. JRASERVER-20963

SSL connector in server.xml incorrect for JIRA 4.1 Standalone

XMLWordPrintable

      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

              dkordonski Dariusz Kordonski (Inactive)
              jcurry Jeff Curry
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved: