Recently, ForwardSSLCertChain option was added to mod_jk for apache. Although document and sources' comment indicate ForwardSSLCertChain, but code is written as ForwardCertChain. Here is a patch for fixing typo Index: apache-1.3/mod_jk.c =================================================================== --- apache-1.3/mod_jk.c (revision 527056) +++ apache-1.3/mod_jk.c (working copy) @@ -1738,7 +1738,7 @@ else if (!strcasecmp(w, "DisableReuse")) { opt = JK_OPT_DISABLEREUSE; } - else if (!strcasecmp(w, "ForwardCertChain")) { + else if (!strcasecmp(w, "ForwardSSLCertChain")) { opt = JK_OPT_FWDCERTCHAIN; } else Index: apache-2.0/mod_jk.c =================================================================== --- apache-2.0/mod_jk.c (revision 527056) +++ apache-2.0/mod_jk.c (working copy) @@ -1771,7 +1771,7 @@ else if (!strcasecmp(w, "DisableReuse")) { opt = JK_OPT_DISABLEREUSE; } - else if (!strcasecmp(w, "ForwardCertChain")) { + else if (!strcasecmp(w, "ForwardSSLCertChain")) { opt = JK_OPT_FWDCERTCHAIN; } else
This fix will be part of 1.2.22, which is the first release with this new feature. The release will be done soon. Thanks for reporting this in time.
Move a couple of fixed JK issues from resolved to closed.