0 Replies Latest reply on Sep 20, 2007 9:15 AM by gady

    question about jboss +apache server

    gady

      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!!