comparison OrthancServer/Resources/Configuration.json @ 4243:64f57c9d5f79

configuration options for webdav
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 09 Oct 2020 18:10:24 +0200
parents c3fc0b884442
children e62bd014ae5c
comparison
equal deleted inserted replaced
4242:5cfa6ba75dfc 4243:64f57c9d5f79
82 82
83 // Enable HTTP compression to improve network bandwidth utilization, 83 // Enable HTTP compression to improve network bandwidth utilization,
84 // at the expense of more computations on the server. Orthanc 84 // at the expense of more computations on the server. Orthanc
85 // supports the "gzip" and "deflate" HTTP encodings. 85 // supports the "gzip" and "deflate" HTTP encodings.
86 "HttpCompressionEnabled" : true, 86 "HttpCompressionEnabled" : true,
87
88 // Enable the publication of the content of the Orthanc server as a
89 // WebDAV share (new in Orthanc 1.8.0). On the localhost, the WebDAV
90 // share is mapped as "http://localhost:8042/webdav/".
91 "WebDavEnabled" : true,
92
93 // Whether to allow deletions through the WebDAV share. This is
94 // disabled by default to avoid accidental loss of DICOM instances.
95 "WebDavDeleteAllowed" : false,
96
97 // Whether to allow uploads through the WebDAV share.
98 "WebDavUploadAllowed" : true,
87 99
88 100
89 101
90 /** 102 /**
91 * Configuration of the DICOM server 103 * Configuration of the DICOM server