comparison Resources/Configuration.json @ 2788:959bd8857eb5

New configuration option: "HttpVerbose" to debug outgoing HTTP connections
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 26 Jul 2018 12:25:18 +0200
parents 02e04783f84b
children dc7330089736
comparison
equal deleted inserted replaced
2787:ad2c32082653 2788:959bd8857eb5
229 // empty string, no HTTP proxy is used. For instance: 229 // empty string, no HTTP proxy is used. For instance:
230 // "HttpProxy" : "192.168.0.1:3128" 230 // "HttpProxy" : "192.168.0.1:3128"
231 // "HttpProxy" : "proxyUser:proxyPassword@192.168.0.1:3128" 231 // "HttpProxy" : "proxyUser:proxyPassword@192.168.0.1:3128"
232 "HttpProxy" : "", 232 "HttpProxy" : "",
233 233
234 // If set to "true", debug messages from libcurl will be issued
235 // whenever Orthanc makes an outgoing HTTP request. This is notably
236 // useful to debug HTTPS-related problems.
237 "HttpVerbose" : false,
238
234 // Set the timeout for HTTP requests issued by Orthanc (in seconds). 239 // Set the timeout for HTTP requests issued by Orthanc (in seconds).
235 "HttpTimeout" : 10, 240 "HttpTimeout" : 10,
236 241
237 // Enable the verification of the peers during HTTPS requests. This 242 // Enable the verification of the peers during HTTPS requests. This
238 // option must be set to "false" if using self-signed certificates. 243 // option must be set to "false" if using self-signed certificates.