comparison Resources/Configuration.json @ 1533:0011cc99443c

improving HTTPS support
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 12 Aug 2015 17:52:10 +0200
parents 4f8c8ef114db
children 95b3b0260240
comparison
equal deleted inserted replaced
1532:b5eb5210af91 1533:0011cc99443c
235 "CaseSensitivePN" : false, 235 "CaseSensitivePN" : false,
236 236
237 // Enable HTTP compression to improve network bandwidth utilization, 237 // Enable HTTP compression to improve network bandwidth utilization,
238 // at the expense of more computations on the server. Orthanc 238 // at the expense of more computations on the server. Orthanc
239 // supports the "gzip" and "deflate" encodings. 239 // supports the "gzip" and "deflate" encodings.
240 "HttpCompressionEnabled" : true 240 "HttpCompressionEnabled" : true,
241
242 // Enable the verification of the peers during HTTPS requests.
243 "HttpsVerifyPeers" : true,
244
245 // Path to the certificates to validate peers in HTTPS
246 // requests. From curl documentation: "Tells curl to use the
247 // specified certificate file to verify the peers. The file may
248 // contain multiple CA certificates. The certificate(s) must be in
249 // PEM format."
250 "HttpsVerifyCertificates" : ""
241 } 251 }