I have read the documentation about activating HTTPS for scrum works pro but cannot get it to run. It may due to the fact I do not understand the terms
keystoreFile is the path to the file containing your SSL certificate.
keystorePass is the password required to use the SSL certificate.
Here is what my server.xml file is looking like
**Connector protocol="HTTP/1.1" SSLEnabled="true"
port="${jboss.web.https.port}" address="${jboss.bind.address}"
maxThreads="100" strategy="ms" maxHttpHeaderSize="8192"
emptySessionPath="true"
scheme="https" secure="true" clientAuth="false"
keystoreFile="/etc/pki/tls/certs/hostname.crt"
keystorePass="/etc/pki/tls/private/hostname.key" sslProtocol = "TLS" **
where the string hostname is replaced by the name of the computer. and the starting ** and end ** are a replacement to HTML header (does not post otherwise)
Is that wrong?
When I am trying https://localhost:8443/scrumworks, I am served with a "URL not found on this server page"
I would appreciate any help
Help get this topic noticed by sharing it on
Twitter,
Facebook, or email.
Twitter,
Facebook, or email.
-
Well,
This is not something I may be able to directly help with, but I believe the "keystorePass=" line is intended to hold the password for your SSL certificate. I am not certain if it can be directed to a file directly. -
Loading Profile...




EMPLOYEE

Probably they meant:
keystoreFile="/etc/pki/tls/private/hostname.key"
keystorePass="myPasswordHere"