12
|
1 {
|
24
|
2 /**
|
|
3 * General configuration of Palantir
|
|
4 **/
|
|
5
|
23
|
6 // Path to the directory that holds the database
|
12
|
7 "StorageDirectory" : "PalantirStorage",
|
23
|
8
|
24
|
9
|
|
10
|
|
11 /**
|
|
12 * Configuration of the HTTP server
|
|
13 **/
|
|
14
|
23
|
15 // HTTP port for the REST services and for the GUI
|
12
|
16 "HttpPort" : 8000,
|
|
17
|
24
|
18
|
|
19
|
|
20 /**
|
|
21 * Configuration of the DICOM server
|
|
22 **/
|
|
23
|
23
|
24 // The DICOM Application Entity Title
|
12
|
25 "DicomAet" : "ANY-SCP",
|
23
|
26
|
|
27 // The DICOM port
|
12
|
28 "DicomPort" : 4242,
|
23
|
29
|
24
|
30
|
|
31
|
|
32 /**
|
|
33 * Security-related options
|
|
34 **/
|
12
|
35
|
23
|
36 // Whether or not SSL is enabled
|
|
37 "SslEnabled" : false,
|
|
38
|
|
39 // Path to the SSL certificate
|
|
40 "SslCertificate" : "certificate.pem",
|
|
41
|
24
|
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)
|
12
|
62 "PalantirPeers" : {
|
|
63 }
|
|
64 }
|