Re: mod_rewrite/mod_header/mod_proxy problem

Bill Stoddard <[email protected]> Mon, 10 Mar 2003 16:23:58 -0500
Newsgroups gmane.comp.apache.mod-proxy
Message-ID <[email protected]>
Josh Konkol wrote:
> Thanks Bill you are correct.  I changed it to RequestHeader and now I can 
> see the headers being created.  Problem is RequestHeader doesn't accept 
> the ${env}e value and instead puts in a <null> value. >
> Any ideas ??

Sure it does (perhaps the doc is wrong). I've tested this recently and 
it works fine.

    RequestHeader append SSL_SESSION_ID %{SSL_SESSION_ID}e
    RequestHeader append SSL_VERSION_INTERFACE %{SSL_VERSION_INTERFACE}e
    RequestHeader append SSL_CIPHER %{SSL_CIPHER}e
    RequestHeader append SSL_SERVER_S_DN %{SSL_SERVER_S_DN}e
    RequestHeader append SSL_CIPHER_USEKEYSIZE %{SSL_CIPHER_USEKEYSIZE}e

Bill