comparison Resources/Configuration.json @ 685:b01cc78caba4

possibility to disable the DICOM/HTTP servers
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 31 Jan 2014 17:45:27 +0100
parents 7bc5ccc550a1
children 2e67366aab83
comparison
equal deleted inserted replaced
684:96d8410c56cd 685:b01cc78caba4
130 // "Sample" : 1024 130 // "Sample" : 1024
131 }, 131 },
132 132
133 // Number of seconds without receiving any instance before a 133 // Number of seconds without receiving any instance before a
134 // patient, a study or a series is considered as stable. 134 // patient, a study or a series is considered as stable.
135 "StableAge" : 60 135 "StableAge" : 60,
136
137 // Enable the HTTP server. If this parameter is set to "false",
138 // Orthanc acts as a pure DICOM server. The REST API and Orthanc
139 // Explorer will not be available.
140 "HttpServerEnabled" : true,
141
142 // Enable the DICOM server. If this parameter is set to "false",
143 // Orthanc acts as a pure REST server. It will not be possible to
144 // receive files or to do query/retrieve through the DICOM protocol.
145 "DicomServerEnabled" : true
136 } 146 }