Browse Source

Use openssl to verify the certificate

Using openssl is consistent with previous instructions and has the notable
virtue of being cross-platform.
Allen Riddell 10 years ago
parent
commit
7fd183a885
1 changed files with 2 additions and 3 deletions
  1. 2
    3
      README.textile

+ 2
- 3
README.textile View File

@@ -81,10 +81,9 @@ Purchase a wildcard cert from a certificate authority, such as "Positive SSL":ht
81 81
 
82 82
 Download your certificate authority's combined cert to @roles/common/files/wildcard_ca.pem@. You can also download the intermediate and root certificates separately and concatenate them together in that order.
83 83
 
84
-Lastly, test your certificates using the @security@ program on Mac OS X:
84
+Lastly, test your certificate:
85 85
 
86
-bc. security verify-cert -L -p ssl -s example.com -c roles/common/files/wildcard_public_cert.crt -c roles/common/files/wildcard_ca.pem
87
-...certificate verification successful.
86
+bc. openssl verify -verbose -CAfile roles/common/files/wildcard_ca.pem roles/common/files/wildcard_public_cert.crt
88 87
 
89 88
 h4. Self-signed SSL certificate
90 89
 

Loading…
Cancel
Save