From 3cc7b384037cfef4c648c82f7aca274e46a9c4a8 Mon Sep 17 00:00:00 2001 From: Terry Fleury Date: Mon, 1 Feb 2021 16:18:41 -0600 Subject: [PATCH] Add ciphers as recommended by https://ssl-config.mozilla.org/ . --- container_files/tomcat/server.xml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/container_files/tomcat/server.xml b/container_files/tomcat/server.xml index ad10359..f25cad4 100644 --- a/container_files/tomcat/server.xml +++ b/container_files/tomcat/server.xml @@ -6,14 +6,19 @@ - + protocol="org.apache.coyote.http11.Http11NioProtocol" + port="443" maxThreads="200" + scheme="https" secure="true" SSLEnabled="true"> + + certificateKeystoreFile="/opt/certs/keystore.jks" + certificateKeystorePassword="password" /> +