diff Resources/Configuration.json @ 1534:95b3b0260240

Options to validate peers against CA certificates in HTTPS requests
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 13 Aug 2015 12:42:32 +0200
parents 0011cc99443c
children ba0226474e22
line wrap: on
line diff
--- a/Resources/Configuration.json	Wed Aug 12 17:52:10 2015 +0200
+++ b/Resources/Configuration.json	Thu Aug 13 12:42:32 2015 +0200
@@ -240,12 +240,13 @@
   "HttpCompressionEnabled" : true,
 
   // Enable the verification of the peers during HTTPS requests.
+  // Reference: http://curl.haxx.se/docs/sslcerts.html
   "HttpsVerifyPeers" : true,
 
-  // Path to the certificates to validate peers in HTTPS
-  // requests. From curl documentation: "Tells curl to use the
-  // specified certificate file to verify the peers. The file may
-  // contain multiple CA certificates. The certificate(s) must be in
-  // PEM format."
-  "HttpsVerifyCertificates" : ""
+  // Path to the CA (certification authority) certificates to validate
+  // peers in HTTPS requests. From curl documentation ("--cacert"
+  // option): "Tells curl to use the specified certificate file to
+  // verify the peers. The file may contain multiple CA
+  // certificates. The certificate(s) must be in PEM format."
+  "HttpsCACertificates" : ""
 }