comparison Resources/Configuration.json @ 1115:da56a7916e8a

Experimental "KeepAlive" configuration option to enable HTTP Keep-Alive
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 02 Sep 2014 17:30:13 +0200
parents e494ceb8d763
children 67c3c1e4a6e0
comparison
equal deleted inserted replaced
1114:adfd2c7a92f3 1115:da56a7916e8a
59 // Check whether the called AET corresponds during a DICOM request 59 // Check whether the called AET corresponds during a DICOM request
60 "DicomCheckCalledAet" : false, 60 "DicomCheckCalledAet" : false,
61 61
62 // The DICOM port 62 // The DICOM port
63 "DicomPort" : 4242, 63 "DicomPort" : 4242,
64
65 // The default encoding that is assumed for DICOM files without
66 // "SpecificCharacterSet" DICOM tag. The allowed values are "Ascii",
67 // "Utf8", "Latin1", "Latin2", "Latin3", "Latin4", "Latin5",
68 // "Cyrillic", "Arabic", "Greek", "Hebrew", "Thai", "Japanese",
69 // and "Chinese".
70 "DefaultEncoding" : "Latin1",
64 71
65 72
66 73
67 /** 74 /**
68 * Security-related options for the HTTP server 75 * Security-related options for the HTTP server
180 // The maximum number of active jobs in the Orthanc scheduler. When 187 // The maximum number of active jobs in the Orthanc scheduler. When
181 // this limit is reached, the addition of new jobs is blocked until 188 // this limit is reached, the addition of new jobs is blocked until
182 // some job finishes. 189 // some job finishes.
183 "LimitJobs" : 10, 190 "LimitJobs" : 10,
184 191
185 // The default encoding that is assumed for DICOM files without 192 // Enable or disable HTTP Keep-Alive (experimental). Set this option
186 // "SpecificCharacterSet" DICOM tag. The allowed values are "Ascii", 193 // to "true" only in the case of high HTTP loads.
187 // "Utf8", "Latin1", "Latin2", "Latin3", "Latin4", "Latin5", 194 "KeepAlive" : false
188 // "Cyrillic", "Arabic", "Greek", "Hebrew", "Thai", "Japanese",
189 // and "Chinese".
190 "DefaultEncoding" : "Latin1"
191 } 195 }