Configure TLS Generate the public key for the previously created private key.openssl pkey -in private.pem -pubout -out public.pem Copy the public key to each VM that runs either a Media Flow Engine and an RTP Proxy. If your Managed Servers run on separate VMs, copy the private key to each Managed Server. Use the keytool command to create a keystore (for example, client-truststore.jks) and import the public key into the keystore. For instructions on completing this step, review the keytool documentation. Append the following options in the JAVA_OPTIONS parameter of both the Admin Server and Managed Servers start-up script: -Djavax.net.ssl.trustStore={ORACLE_HOME}/client-truststore.jks \ -Djavax.net.ssl.trustStorePassword=changeit \ -Djavax.net.ssl.trustStoreType=JKS" Restart the Admin Server and the Managed Servers. Enable TLS in the MFE Connect to the VM where you installed the MFE. Navigate to the MFE's config directory.cd media-flow-engine-8.3.0.0.0-MFE/MFE_HOME/config/ In the application.yaml file, set the server.tls.enabled property to true.server: http-port: 8080 https-port: 8443 tls: enabled: true client-auth: "NONE" protocols: [TLSv1.3, TLSv1.2]