diff 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
line wrap: on
line diff
--- a/OrthancServer/Resources/Configuration.json	Fri Oct 09 17:51:06 2020 +0200
+++ b/OrthancServer/Resources/Configuration.json	Fri Oct 09 18:10:24 2020 +0200
@@ -85,6 +85,18 @@
   // supports the "gzip" and "deflate" HTTP encodings.
   "HttpCompressionEnabled" : true,
 
+  // Enable the publication of the content of the Orthanc server as a
+  // WebDAV share (new in Orthanc 1.8.0). On the localhost, the WebDAV
+  // share is mapped as "http://localhost:8042/webdav/".
+  "WebDavEnabled" : true,
+
+  // Whether to allow deletions through the WebDAV share. This is
+  // disabled by default to avoid accidental loss of DICOM instances.
+  "WebDavDeleteAllowed" : false,
+
+  // Whether to allow uploads through the WebDAV share.
+  "WebDavUploadAllowed" : true,
+
 
 
   /**