Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47425
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 12 Sep 2009 16:43:45 +0000 (16:43 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 12 Sep 2009 16:43:45 +0000 (16:43 +0000)
Document the crlFile attribute

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@814191 13f79535-47bb-0310-9956-ffa450edef68

webapps/docs/config/http.xml
webapps/docs/ssl-howto.xml

index ed6a210..2caa230 100644 (file)
       timeout. Use 0 to specify an unlimited timeout. If not specified, a
       default of 86400 (24 hours) is used.</p>
     </attribute>
+
+    <attribute name="crlFile" required="false">
+      <p>The certificate revocation list file to use to validate client
+      certificates.</p>
+    </attribute>
     
   </attributes>
 
index 4d8ca91..972087d 100644 (file)
@@ -495,15 +495,21 @@ values, depending on how you configured your keystore earlier:</p>
   </tr>
   <tr>
    <td><code>truststoreType</code></td>
-    <td>Add this element if your are using a different format for the 
-        TrustStore then you are using for the KeyStore.</td>
+   <td>Add this element if your are using a different format for the 
+       TrustStore then you are using for the KeyStore.</td>
   </tr>
   <tr>
    <td><code>keyAlias</code></td>
-    <td>Add this element if your have more than one key in the KeyStore.
-        If the element is not present the first key read in the KeyStore
-        will be used.</td>
+   <td>Add this element if your have more than one key in the KeyStore.
+       If the element is not present the first key read in the KeyStore
+       will be used.</td>
   </tr>
+  <tr>
+    <td><code>crlFile</code></td>
+    <td>The certificate revocation list file to use to validate client
+        certificates.</td>
+  </tr>
+  
 </table>
 
 <p>After completing these configuration changes, you must restart Tomcat as