# HG changeset patch # User Alain Mazy # Date 1655894832 -7200 # Node ID 60c4deeb6892e6ff8831e4c7361a71806fe29766 # Parent 12f8932ee3a7c3e354295891346a32a9c3513ffd dicom-web Host and Ssl config diff -r 12f8932ee3a7 -r 60c4deeb6892 Sphinx/source/plugins/dicomweb.rst --- 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".