Switch viflow easy plan to HTTPS
Applies to: viflow easy plan | Article: 1818002 | Updated on 02.03.2023
Situation
You would like to switch access to viflow easy plan to the encrypted communication protocol HTTPS – the PFX certificate required for this is already available.
Solution
- Open the server.xml file located in the C:\Program Files\Apache Software Foundation\Tomcat 9.0\conf directory (default path) in an editor.
- Enter the following lines of code into the file (or change the existing entry):
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true" clientAuth="false"
sslProtocol="TLS"
keystoreFile="Path to PFX certificate"
keystoreType="PKCS12"
keystorePass="PFX certificate password" />
- Save the changes and close the editor.