1 Reply Latest reply on Nov 4, 2011 4:02 PM by viggo.navarsete

    creating multiple Connectors with different SSL Certificates

    maniarkm

      Hi,

      Can you create more than one Connector and have different Certificates applied to them?

      I want to allow more than one certificate to be used for a secure application as some clients have one certificate and some have another.

        • 1. Re: creating multiple Connectors with different SSL Certificates
          viggo.navarsete

          Would this help?

              <Connector port="8443" address="${jboss.bind.address}"

                   protocol="HTTP/1.1" SSLEnabled="true" maxHttpHeaderSize="8192"

                   maxThreads="150" scheme="https" secure="true"

                   clientAuth="false"

                   keystoreFile="${jboss.server.home.dir}/conf/security/certificate-A.jks"

                   keystorePass="certtificate-A-password"

           

           

                   truststoreFile="${jboss.server.home.dir}/conf/security/trust/testcacerts"

                   truststorePass="truststore-password"

                   sslProtocol="TLS"

                   URIEncoding="UTF-8"      

                          />

           

              <Connector port="9443" address="${jboss.bind.address}"

                   protocol="HTTP/1.1" SSLEnabled="true" maxHttpHeaderSize="8192"

                   maxThreads="150" scheme="https" secure="true"

                   clientAuth="true"

                   keystoreFile="${jboss.server.home.dir}/conf/security/certificate-B.jks"

                   keystorePass="certificate-B-password"

                   truststoreFile="${jboss.server.home.dir}/conf/security/trust/testcacerts"

                   truststorePass="truststore-password"

                   sslProtocol="TLS"      

                          />