Author: markt Date: Mon Feb 21 23:21:09 2011 New Revision: 1073184 URL: http://svn.apache.org/viewvc?rev=1073184&view=rev Log: Convert to Javadoc comment and add some additional info
Modified: tomcat/trunk/java/org/apache/catalina/valves/SSLValve.java Modified: tomcat/trunk/java/org/apache/catalina/valves/SSLValve.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/valves/SSLValve.java?rev=1073184&r1=1073183&r2=1073184&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/catalina/valves/SSLValve.java (original) +++ tomcat/trunk/java/org/apache/catalina/valves/SSLValve.java Mon Feb 21 23:21:09 2011 @@ -28,22 +28,35 @@ import org.apache.catalina.Globals; import org.apache.catalina.connector.Request; import org.apache.catalina.connector.Response; -/* - * Valve to fill the SSL informations in the request - * mod_header is used to fill the headers and the valve - * will fill the parameters of the request. +/** + * When using mod_proxy_http, the client SSL information is not included in the + * protocol (unlike mod_jk and mod_proxy_ajp). To make the client SSL + * information available to Tomcat, some additional configuration is required. + * In httpd, mod_headers is used to add the SSL information as HTTP headers. In + * Tomcat, this valve is used to read the information from the HTTP headers and + * insert it into the request.<p> + * + * <b>Note: Ensure that the headers are always set by httpd for all requests to + * prevent a client spoofing SSL information by sending fake headers. </b><p> + * * In httpd.conf add the following: - * <IfModule ssl_module> + * <pre> + * <IfModule ssl_module> * RequestHeader set SSL_CLIENT_CERT "%{SSL_CLIENT_CERT}s" * RequestHeader set SSL_CIPHER "%{SSL_CIPHER}s" * RequestHeader set SSL_SESSION_ID "%{SSL_SESSION_ID}s" * RequestHeader set SSL_CIPHER_USEKEYSIZE "%{SSL_CIPHER_USEKEYSIZE}s" - * </IfModule> - * - * @author Jean-Frederic Clere - * @version $Id$ + * </IfModule> + * </pre> + * + * In server.xml, configure this valve under the Engine element in server.xml: + * <pre> + * <Engine ...> + * <Valve className="org.apache.catalina.valves.SSLValve" /> + * <Host ... /> + * </Engine> + * </pre> */ - public class SSLValve extends ValveBase { --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org