comparison Resources/Configuration.json @ 3537:9cc09f4c0fa9

New configuration option: "HttpRequestTimeout"
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 10 Oct 2019 13:16:15 +0200
parents f07352e0375c
children bdafff1ce443
comparison
equal deleted inserted replaced
3536:8be5451f6820 3537:9cc09f4c0fa9
509 // text-based exposition format. 509 // text-based exposition format.
510 "MetricsEnabled" : true, 510 "MetricsEnabled" : true,
511 511
512 // Whether calls to URI "/tools/execute-script" is enabled. Starting 512 // Whether calls to URI "/tools/execute-script" is enabled. Starting
513 // with Orthanc 1.5.8, this URI is disabled by default for security. 513 // with Orthanc 1.5.8, this URI is disabled by default for security.
514 "ExecuteLuaEnabled" : false 514 "ExecuteLuaEnabled" : false,
515
516 // Set the timeout for HTTP requests, in seconds. This corresponds
517 // to option "request_timeout_ms" of Mongoose/Civetweb. It will set
518 // the socket options "SO_RCVTIMEO" and "SO_SNDTIMEO" to the
519 // specified value.
520 "HttpRequestTimeout" : 30
515 } 521 }