Tools
Enable TLS 1.3 in Web Help Desk
This article describes how to enable Transport Layer Security version 1.3 (TLS 1.3) in Web Help Desk 12.7.5 and later.
First published date
Last published date
Overview
Product section
Cause
Resolution
Enable TLS 1.3 in a non-FIPS deployment
- Back up your Web Help Desk deployment.
- Log in to your Web Help Desk server as an administrator.
- Navigate to the C:\Program Files\WebHelpDesk\conf directory.
- Open the tomcat_server_templates.xml file in a text editor (such as Notepad).
- In the file, scroll down and locate the following header:
<Connector port="@@@WEBHELPDESK_SSL_PORT@@@" protocol="HTTP/1.1 SSLEnabled="true"
- Under the header, locate the following line:
clientAuth="false"sslEnabledProtocols="TLSv1.2" sslProtocol="TL
- Add TLSv1.3 to the line after TLSv1.2, separated by a comma.
clientAuth="false"sslEnabledProtocols="TLSv1.2,TLSv1.3" sslProtocol="TLS
- Under the same header, locate the line that begins with:
ciphers=
- Replace the current ciphers with the following ciphers:
ciphers=TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,TLS_AES_128_CCM_SHA256,TLS_AES_128_CCM_8_SHA256
- Save and close the file.
- Restart the Web Help Desk server.
Enable TLS 1.3 in a FIPS deployment
- Back up your Web Help Desk deployment.
- Log in to your Web Help Desk server as an administrator.
- Navigate to the C:\Program Files\WebHelpDesk\conf directory.
- Open the tomcat_server_templates.xml file in a text editor (such as Notepad).
- In the file, scroll down to the following header:
<Connector port="@@@WEBHELPDESK_SSL_PORT@@@" protocol="HTTP/1.1 SSLEnabled="true"
- Under the header, locate the following line:
clientAuth=”false”sslEnabledProtocols=”TLSv1.2” sslProtocol=”TLS”
- Add TLSv1.3 to the line after TLS1.2 separated by a comma.
clientAuth=”false”sslEnabledProtocols=”TLSv1.2,TLSv1.3” sslProtocol=”TLS”
- Save and close the file.
- Restart the Web Help Desk server.