From b1c48ac551edd3e76297795ff21b8b471e8f5cc6 Mon Sep 17 00:00:00 2001 From: markt Date: Wed, 13 Jan 2010 11:18:10 +0000 Subject: [PATCH] Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=48532 Better documentation of the SSL connector defaults git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@898718 13f79535-47bb-0310-9956-ffa450edef68 --- webapps/docs/config/http.xml | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/webapps/docs/config/http.xml b/webapps/docs/config/http.xml index b4ec6d4ae..c3417fc50 100644 --- a/webapps/docs/config/http.xml +++ b/webapps/docs/config/http.xml @@ -764,22 +764,34 @@ -

The TrustStore file to use to validate client certificates.

+

The trust store file to use to validate client certificates. The + default is the value of the javax.net.ssl.trustStore system + property. If neither this attribute nor the default system property is + set, no trust store will be configured.

-

The password to access the TrustStore. This defaults to the value - of keystorePass.

+

The password to access the trust store. The default is the value of the + javax.net.ssl.trustStorePassword system property. If that + property is null, the value of keystorePass is used as the + default. If neither this attribute, the default system property nor + keystorePassis set, no trust store will be configured.

-

Add this element if your are using a different format for the - TrustStore then you are using for the KeyStore.

+

The type of key store used for the trust store. The default is the + value of the javax.net.ssl.trustStoreType system property. If + that property is null, the value of keystoreType is used as + the default.

The name of the truststore provider to be used for the server - certificate. If not specified, the list of registered providers is + certificate. The default is the value of the + javax.net.ssl.trustStoreProvider system property. If + that property is null, the value of keystoreProvider is used + as the default. If neither this attribute, the default system property nor + keystoreProvideris set, the list of registered providers is traversed in preference order and the first provider that supports the truststoreType is used.

-- 2.11.0