From: markt Date: Wed, 13 Jan 2010 11:18:10 +0000 (+0000) Subject: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=48532 X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=b1c48ac551edd3e76297795ff21b8b471e8f5cc6;p=tomcat7.0 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 --- 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.