changeset 856:60c4deeb6892

dicom-web Host and Ssl config
author Alain Mazy <am@osimis.io>
date Wed, 22 Jun 2022 12:47:12 +0200
parents 12f8932ee3a7
children ce84b3b381f0
files Sphinx/source/plugins/dicomweb.rst
diffstat 1 files changed, 8 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/Sphinx/source/plugins/dicomweb.rst	Wed Jun 08 16:58:44 2022 +0200
+++ b/Sphinx/source/plugins/dicomweb.rst	Wed Jun 22 12:47:12 2022 +0200
@@ -108,8 +108,8 @@
 
 There are several configuration options that can be set to fine-tune
 the Orthanc DICOMweb server. Here is the full list of the available
-options, all of them must be grouped inside the ``DicomWeb`` section of
-the Orthanc configuration file::
+options and their default values, all of them must be grouped inside 
+the ``DicomWeb`` section of the Orthanc configuration file::
 
   {
     [...]
@@ -118,9 +118,13 @@
       "Root" : "/dicom-web/",      // Root URI of the DICOMweb API (for QIDO-RS, STOW-RS and WADO-RS)
       "EnableWado" : true,         // Whether WADO-URI (previously known as WADO) support is enabled
       "WadoRoot" : "/wado",        // Root URI of the WADO-URI (aka. WADO) API
-      "Ssl" : false,               // Whether HTTPS should be used for subsequent WADO-RS requests
+      "Ssl" : false,               // Whether HTTPS should be used for subsequent WADO-RS requests.
+                                   // If Orthanc is behind a reverse-proxy, the 'forwarded' headers will be used instead of the config.
       "QidoCaseSensitive" : true,  // For QIDO-RS server, whether search is case sensitive (since release 0.5)
-      "Host" : "localhost",        // Hard-codes the name of the host for subsequent WADO-RS requests (deprecated)
+      "Host" : "",                 // Hard-codes the name of the host for subsequent WADO-RS requests.  
+                                   // e.g: "localhost:8042", "dicomweb.mydomain.org"
+                                   // If empty (default), the plugin will guess it from other configurations or 
+                                   // from the reverse-proxy 'forwarded' headers.
       "StudiesMetadata" : "Full",  // How study-level metadata is retrieved (since release 1.1, cf. section below)
       "SeriesMetadata" : "Full",   // How series-level metadata is retrieved (since release 1.1, cf. section below)
       "PublicRoot": "/dicom-web/", // The public Root URI of the DICOMweb API in case it is different from "Root".