comparison Resources/Configuration.json @ 2946:2e751f615e03

new configuration options: DicomModalitiesInDatabase and OrthancPeersInDatabase
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 29 Nov 2018 17:15:29 +0100
parents 00504dcc996f
children dc18d5804746
comparison
equal deleted inserted replaced
2945:3c636087d060 2946:2e751f615e03
196 // "AllowMove" : false, 196 // "AllowMove" : false,
197 // "AllowStore" : true 197 // "AllowStore" : true
198 //} 198 //}
199 }, 199 },
200 200
201 // Whether to store the DICOM modalities in the Orthanc database
202 // instead of in this configuration file (new in Orthanc 1.4.3)
203 "DicomModalitiesInDatabase" : false,
204
201 // Whether the Orthanc SCP allows incoming C-Echo requests, even 205 // Whether the Orthanc SCP allows incoming C-Echo requests, even
202 // from SCU modalities it does not know about (i.e. that are not 206 // from SCU modalities it does not know about (i.e. that are not
203 // listed in the "DicomModalities" option above). Orthanc 1.3.0 207 // listed in the "DicomModalities" option above). Orthanc 1.3.0
204 // is the only version to behave as if this argument was set to "false". 208 // is the only version to behave as if this argument was set to "false".
205 "DicomAlwaysAllowEcho" : true, 209 "DicomAlwaysAllowEcho" : true,
246 // "CertificateKeyPassword" : "certpass", 250 // "CertificateKeyPassword" : "certpass",
247 // "Pkcs11" : false 251 // "Pkcs11" : false
248 // } 252 // }
249 }, 253 },
250 254
255 // Whether to store the Orthanc peers in the Orthanc database
256 // instead of in this configuration file (new in Orthanc 1.4.3)
257 "OrthancPeersInDatabase" : false,
258
251 // Parameters of the HTTP proxy to be used by Orthanc. If set to the 259 // Parameters of the HTTP proxy to be used by Orthanc. If set to the
252 // empty string, no HTTP proxy is used. For instance: 260 // empty string, no HTTP proxy is used. For instance:
253 // "HttpProxy" : "192.168.0.1:3128" 261 // "HttpProxy" : "192.168.0.1:3128"
254 // "HttpProxy" : "proxyUser:proxyPassword@192.168.0.1:3128" 262 // "HttpProxy" : "proxyUser:proxyPassword@192.168.0.1:3128"
255 "HttpProxy" : "", 263 "HttpProxy" : "",