I have configured an SSL certificate which will be acting as a client certificate and connecting to a remote server on port 100 over SSL.
In my apache config i have done the following configuration for SSL:
SSLProxyEngine on
SSLProxyVerify optional
SSLProxyCheckPeerCN off
SSLProxyCheckPeerExpire off
SSLProxyMachineCertificateFile /opt/SP/apps/proxy/conf/certs/es_snf_prx_prd_cert.pem
SSLProxyCACertificateFile /opt/SP/apps/proxy/conf/certs/esprx/vf_es_ca_cert_browser_exp.pem
To test my SSL client certificate i have tried connecting to remote server via curl as following and got the SSL connect error:
curl -vvvv --cert '/opt/SP/apps/proxy/conf/certs/es_snf_prx_prd_cert.pem' "https://47.60.13.249:100/"
* About to connect() to 47.60.13.249 port 100 (#0)
* Trying 47.60.13.249... connected
* Connected to 47.60.13.249 (47.60.13.249) port 100 (#0)
* Initializing NSS with certpath: sql:/etc/pki/nssdb
* CAfile: /etc/pki/tls/certs/ca-bundle.crt
CApath: none
* NSS error -12263
* Closing connection #0
* SSL connect error
curl: (35) SSL connect error
How to i fix this and test my SSL connection with remote server using client certificate ?