comparison Resources/Configuration.json @ 24:166664f0f860

base64
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 28 Aug 2012 10:42:43 +0200
parents 62bd05fe4b7c
children dd1489098265
comparison
equal deleted inserted replaced
23:62bd05fe4b7c 24:166664f0f860
1 { 1 {
2 /**
3 * General configuration of Palantir
4 **/
5
2 // Path to the directory that holds the database 6 // Path to the directory that holds the database
3 "StorageDirectory" : "PalantirStorage", 7 "StorageDirectory" : "PalantirStorage",
4 8
9
10
11 /**
12 * Configuration of the HTTP server
13 **/
14
5 // HTTP port for the REST services and for the GUI 15 // HTTP port for the REST services and for the GUI
6 "HttpPort" : 8000, 16 "HttpPort" : 8000,
17
18
19
20 /**
21 * Configuration of the DICOM server
22 **/
7 23
8 // The DICOM Application Entity Title 24 // The DICOM Application Entity Title
9 "DicomAet" : "ANY-SCP", 25 "DicomAet" : "ANY-SCP",
10 26
11 // The DICOM port 27 // The DICOM port
12 "DicomPort" : 4242, 28 "DicomPort" : 4242,
13 29
14 // The list of the DICOM modalities. 30
15 "DicomModalities" : { 31
16 // "sample" : [ "SAMPLESCP", "192.168.100.42", 104 ] 32 /**
17 }, 33 * Security-related options
34 **/
18 35
19 // Whether or not SSL is enabled 36 // Whether or not SSL is enabled
20 "SslEnabled" : false, 37 "SslEnabled" : false,
21 38
22 // Path to the SSL certificate 39 // Path to the SSL certificate
23 "SslCertificate" : "certificate.pem", 40 "SslCertificate" : "certificate.pem",
24 41
42 // Whether or not the password protection is enabled
43 "AuthenticationEnabled" : true,
44
45 // The list of the registered users. Because Palantir uses HTTP
46 // Basic Authentication, the passwords are stored as plain text.
47 "RegisteredUsers" : {
48 "alice" : "alicePassword"
49 },
50
51
52 /**
53 * Network topology
54 **/
55
56 // The list of the known DICOM modalities
57 "DicomModalities" : {
58 // "sample" : [ "SAMPLESCP", "192.168.100.42", 104 ]
59 },
60
61 // The list of the known Palantir peers (currently unused)
25 "PalantirPeers" : { 62 "PalantirPeers" : {
26 } 63 }
27 } 64 }