diff options
author | Jorge Hernandez <jh1730@att.com> | 2018-08-17 16:23:07 -0500 |
---|---|---|
committer | Jorge Hernandez <jh1730@att.com> | 2018-08-17 16:31:12 -0500 |
commit | a7ad88d23b2a59a16c098b156c430a2fe3558023 (patch) | |
tree | 8056ad9763c6c34b30fe0a8dc0412d597e2c3d6f /packages/base/src/files/install/servers/console | |
parent | 84df4a428ded309f750f52ac1c104ac84e426fc0 (diff) |
https certs with aaf+pe containers compatibility
Change-Id: I21ed7a0fea5ea7d62857a077fa2568da4af99d26
Issue-ID: POLICY-1057
Signed-off-by: Jorge Hernandez <jh1730@att.com>
Diffstat (limited to 'packages/base/src/files/install/servers/console')
-rw-r--r-- | packages/base/src/files/install/servers/console/conf/server.xml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/packages/base/src/files/install/servers/console/conf/server.xml b/packages/base/src/files/install/servers/console/conf/server.xml index 618a6a99a..5e6226742 100644 --- a/packages/base/src/files/install/servers/console/conf/server.xml +++ b/packages/base/src/files/install/servers/console/conf/server.xml @@ -106,11 +106,16 @@ documentation --> - <!-- ONAP portal currently using http instead of https + <!-- ONAP portal currently using http instead of https + + Setting the keystore and truststore in the connector, overrides the javax.net.ssl system properties + passed in to the tomcat JVM: + <Connector port="${{SSL_HTTP_CONNECTOR_PORT}}" protocol="org.apache.coyote.http11.Http11NioProtocol" maxThreads="150" SSLEnabled="true" scheme="https" secure="true" clientAuth="false" sslEnabledProtocols="TLSv1, TLSv1.1, TLSv1.2" - keystoreFile="${{POLICY_HOME}}/etc/ssl/policy-keystore" keystorePass="${{KEYSTORE_PASSWD}}"/> + keystoreFile="${{POLICY_HOME}}/etc/ssl/policy-keystore" keystorePass="${{KEYSTORE_PASSWD}}" + truststoreFile="${{POLICY_HOME}}/etc/ssl/policy-truststore" truststorePass="${{TRUSTSTORE_PASSWD}}"/> --> <Connector port="${{SSL_HTTP_CONNECTOR_PORT}}" protocol="org.apache.coyote.http11.Http11NioProtocol" maxThreads="150" /> |