view Resources/Configuration.json @ 227:209ca3f6db62

dicom-scu from rest
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 30 Nov 2012 10:57:34 +0100
parents 9bb7e8277e15
children 6d9be2b470b4
line wrap: on
line source

{
    /**
     * General configuration of Orthanc
     **/

    // Path to the directory that holds the database
    "StorageDirectory" : "OrthancStorage",

    // The logical name of this instance of Orthanc. This one is
    // displayed in Orthanc Explorer and at the URI "/system".
    "Name" : "MyOrthanc",



    /**
     * Configuration of the HTTP server
     **/

    // HTTP port for the REST services and for the GUI
    "HttpPort" : 8042,



    /**
     * Configuration of the DICOM server
     **/

    // The DICOM Application Entity Title
    "DicomAet" : "ORTHANC",

    // Check whether the called AET corresponds during a DICOM request
    "DicomCheckCalledAet" : false,

    // The DICOM port
    "DicomPort" : 4242,



    /**
     * Security-related options
     **/

    // Whether remote hosts can connect to the HTTP server
    "RemoteAccessAllowed" : false,

    // Whether or not SSL is enabled
    "SslEnabled" : false,

    // Path to the SSL certificate
    "SslCertificate" : "certificate.pem",

    // Whether or not the password protection is enabled
    "AuthenticationEnabled" : false,

    // The list of the registered users. Because Orthanc uses HTTP
    // Basic Authentication, the passwords are stored as plain text.
    "RegisteredUsers" : {
        "alice" : "alicePassword"
    },



    /**
     * Network topology
     **/

    // The list of the known DICOM modalities
    "DicomModalities" : {
      /**
       * Uncommenting the following line would enable Orthanc to
       * connect to an instance of the "storescp" open-source DICOM
       * store started by the command line "storescp 2000".
       **/
      // "sample" : [ "STORESCP", "localhost", 2000 ]
    },

    // The list of the known Orthanc peers (currently unused)
    "OrthancPeers" : {
    }
}