HTTPS Configuration for Release 3.1

Quick Links
HTTPS Configuration

Documentation Home

HTTPS Configuration

ScrumWorks Pro supports access through a secure HTTPS connection.

The configuration outlined below is intended as a sample. You should modify it according to the configuration used by your organization.

This guide is intended to be used by your organization's system administrator.
Customizing the Configuration
To add HTTPS to your ScrumWorks Pro installation, you will need to edit the file

<SW Installation Directory>/server/scrumworks/deploy/jboss-web.deployer/server.xml

There is a section of the XML at about line 29 that is commented out. You will need to uncomment the section and change the organization-specific parameters.

The specific XML section you are looking for looks like:
               <!-- SSL/TLS Connector configuration using the admin devl guide keystore
               <Connector port="8443" address="${jboss.bind.address}"
                  maxThreads="100" strategy="ms" maxHttpHeaderSize="8192"
                  emptySessionPath="true"
                  scheme="https" secure="true" clientAuth="false" SSLEnabled="true"
                  keystoreFile="${jboss.server.home.dir}/conf/chap8.keystore"
                  keystorePass="rmi+ssl" sslProtocol = "TLS" />
               -->
            
. The tags you will need to change are keystoreFile and keystorePass.

  • keystoreFile is the path to the file containing your SSL certificate.
  • keystorePass is the password required to use the SSL certificate.

Other parameters should not need to be modified.

Once the configuration has been changed, restart the ScrumWorks Pro server. You should then be able to access https://servername:8443/scrumworks


» top