Changes between Version 1 and Version 2 of SecurityInfo
- Timestamp:
- 11/08/10 22:19:03 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SecurityInfo
v1 v2 92 92 }}} 93 93 94 Note the error at the end, '''"Verify return code: 21 (unable to verify the first certificate)"'''. 95 94 96 Copy from the "-----BEGIN CERTIFICATE-----" to the "-----END CERTIFICATE-----" , and save it in your ~/.cert/www.transitionnetwork.org/ directory as www.transitionnetwork.org.pem. 95 97 96 This certificate was issued by Gandi, so you need to get "Certification Authority Root Certificate":97 98 This certificate was issued by Gandi, so you need to get the various certificates [http://wiki.gandi.net/en/ssl/intermediate?rev=1236084787 from gandi.net] and chenge them into pem format: 99 98 100 {{{ 99 $ wget http://crt.gandi.net/GandiStandardSSLCA.crt -O ~/.cert/www.transitionnetwork.org/gandi.pem 101 wget http://crt.gandi.net/GandiStandardSSLCA.crt 102 wget http://crt.usertrust.com/UTNAddTrustServer_CA.crt 103 wget http://crt.usertrust.com/AddTrustExternalCARoot.crt 104 openssl x509 -inform DER -in GandiStandardSSLCA.crt -out GandiStandardSSLCA.pem 105 openssl x509 -inform DER -in AddTrustExternalCARoot.crt -out AddTrustExternalCARoot.pem 106 openssl x509 -inform DER -in UTNAddTrustServer_CA.crt -out UTNAddTrustServer_CA.pem 100 107 }}} 101 108 … … 111 118 $ openssl s_client -CApath ~/.cert/www.transitionnetwork.org/ -connect www.transitionnetwork.org:443 112 119 }}} 120 121 And you should now output like above but with this at the end: 122 123 {{{ 124 Verify return code: 0 (ok) 125 }}} 126