If you wish to check what domain names you have loaded in your Cert, you can run the following command:
openssl req -in your.csr -noout -text
The output will display details on your domain.
openssl s_client -connect api.system.10.x.x.x:443 or openssl s_client -connect api.system.yourdomain.com:443 -state -debug >ssl-debug.txt
Browse to you Domain api.your-domain.com in your browser, click on the lock icon, and check the Cert's details.
You may need to check that your Cert has all the necessary SAN's loaded. To do this, run the following command:
echo -n | openssl s_client -connect "api.systemDomain.example.com:443" | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | openssl x509 -text | grep "DNS:"
You will see something similar to the following output:
DNS:*.uaa.systemDomain.example.com, DNS:*.login.systemDomain.example.com, DNS:*.systemDomain.example.com
A Self-Signed CA is not publicly trusted but is configured to trust all of the company's computers or networks. This is a common situation for large companies. If your environment is not publicly facing you can use Self-Signed Certs. Configuring your private browsers to accept your own Certificates as trusted.
If you are serving Public internet traffic you should use Publicly signed Certs generated using a CA (Certification Authority). This will prevent browsers generating certificate error when accessing your apps. A CA issues digital certificates that are trusted by default in browsers. So when accessing your App's users will not get any SSL/Certificate errors.
Please refer to the following links for more information on Configuring Certificates of PCF:
A Self-Signed CA is not publicly trusted but is configured to trust all of the company's computers or networks. This is a common situation for large companies. If your environment is not publicly facing you can use Self-Signed Certs. Configuring your private browsers to accept your own Certificates as trusted.
If you are serving Public internet traffic you should use Publicly signed Certs generated using a CA (Certification Authority). This will prevent browsers generating certificate error when accessing your apps. A CA issues digital certificates that are trusted by default in browsers. So when accessing your App's users will not get any SSL/Certificate errors.
Please refer to the following links for more information on Configuring Certificates of PCF: