dear:
when using ssl with apache server , I use config as follow:
<VirtualHost *:443>
SSLEngine On
SSLProxyEngine On
SSLOptions +ExportCertData
SSLCertificateFile conf/ssl/cert.cer
SSLCertificateKeyFile conf/ssl/server.key
SSLCACertificateFile conf/ssl/CA.cer
SSLVerifyClient require
SSLVerifyDepth 3
RequestHeader add ACLIENT_CERT "%{SSL_CLIENT_CERT}s"
<Proxy balancer://test>
BalancerMember
http://10.10.9.209:8080/ loadfactor=1
when visiting
https://localhost/test , I can't get the request header param
ACLIENT_CERT , using
https://localhost/test/ I can get it.
I guess that visiting
https://localhost/test, the server recevie
http://localhost:
8080/test ,but can't match . so response do sendredirect
this time ,the recreating request is different from the previous request. my
attributes lost!!
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4086671#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...