view Resources/Configuration.json @ 34:96e57b863dd9

option to disallow remote access
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 30 Aug 2012 11:22:21 +0200
parents dd1489098265
children e1a3ae0dadf3
line wrap: on
line source

{
    /**
     * General configuration of Palantir
     **/

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



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

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



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

    // The DICOM Application Entity Title
    "DicomAet" : "ANY-SCP",

    // 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 Palantir uses HTTP
    // Basic Authentication, the passwords are stored as plain text.
    "RegisteredUsers" : {
        "alice" : "alicePassword"
    },



    /**
     * Network topology
     **/

    // The list of the known DICOM modalities
    "DicomModalities" : {
        // "sample" : [ "SAMPLESCP", "192.168.100.42", 104 ]
    },

    // The list of the known Palantir peers (currently unused)
    "PalantirPeers" : {
    }
}