comparison Resources/Configuration.json @ 64:71c4a4abe90b orthanc-renaming

renaming of resources
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sun, 16 Sep 2012 09:35:31 +0200
parents 601ee9b7f2c7
children e9e3c9e6a555
comparison
equal deleted inserted replaced
63:f1d0470ff334 64:71c4a4abe90b
1 { 1 {
2 /** 2 /**
3 * General configuration of Palanthir 3 * General configuration of Orthanc
4 **/ 4 **/
5 5
6 // Path to the directory that holds the database 6 // Path to the directory that holds the database
7 "StorageDirectory" : "PalanthirStorage", 7 "StorageDirectory" : "OrthancStorage",
8 8
9 9
10 10
11 /** 11 /**
12 * Configuration of the HTTP server 12 * Configuration of the HTTP server
46 "SslCertificate" : "certificate.pem", 46 "SslCertificate" : "certificate.pem",
47 47
48 // Whether or not the password protection is enabled 48 // Whether or not the password protection is enabled
49 "AuthenticationEnabled" : false, 49 "AuthenticationEnabled" : false,
50 50
51 // The list of the registered users. Because Palanthir uses HTTP 51 // The list of the registered users. Because Orthanc uses HTTP
52 // Basic Authentication, the passwords are stored as plain text. 52 // Basic Authentication, the passwords are stored as plain text.
53 "RegisteredUsers" : { 53 "RegisteredUsers" : {
54 "alice" : "alicePassword" 54 "alice" : "alicePassword"
55 }, 55 },
56 56
63 // The list of the known DICOM modalities 63 // The list of the known DICOM modalities
64 "DicomModalities" : { 64 "DicomModalities" : {
65 // "sample" : [ "SAMPLESCP", "192.168.100.42", 104 ] 65 // "sample" : [ "SAMPLESCP", "192.168.100.42", 104 ]
66 }, 66 },
67 67
68 // The list of the known Palanthir peers (currently unused) 68 // The list of the known Orthanc peers (currently unused)
69 "PalanthirPeers" : { 69 "OrthancPeers" : {
70 } 70 }
71 } 71 }