Mercurial > hg > orthanc
view Resources/Configuration.json @ 136:fe180eae201d
openssl exception
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 09 Oct 2012 18:21:01 +0200 |
parents | 27dc762e3dc8 |
children | aa6c8a942952 |
line wrap: on
line source
{ /** * General configuration of Orthanc **/ // Path to the directory that holds the database "StorageDirectory" : "OrthancStorage", /** * 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" : "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" : true, // 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" : { // "sample" : [ "SAMPLESCP", "192.168.100.42", 104 ] }, // The list of the known Orthanc peers (currently unused) "OrthancPeers" : { } }