comparison Resources/Debian/orthanc.json @ 91:c35eee0cbd12

service
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 28 Sep 2012 13:41:20 +0200
parents
children aad2fe26587b
comparison
equal deleted inserted replaced
90:10184c6eabc0 91:c35eee0cbd12
1 {
2 /**
3 * General configuration of Orthanc
4 **/
5
6 // Path to the directory that holds the database
7 "StorageDirectory" : "/var/lib/orthanc",
8
9
10
11 /**
12 * Configuration of the HTTP server
13 **/
14
15 // HTTP port for the REST services and for the GUI
16 "HttpPort" : 8000,
17
18
19
20 /**
21 * Configuration of the DICOM server
22 **/
23
24 // The DICOM Application Entity Title
25 "DicomAet" : "ORTHANC",
26
27 // Check whether the called AET corresponds during a DICOM request
28 "DicomCheckCalledAet" : false,
29
30 // The DICOM port
31 "DicomPort" : 4242,
32
33
34
35 /**
36 * Security-related options
37 **/
38
39 // Whether remote hosts can connect to the HTTP server
40 "RemoteAccessAllowed" : false,
41
42 // Whether or not SSL is enabled
43 "SslEnabled" : false,
44
45 // Path to the SSL certificate
46 "SslCertificate" : "certificate.pem",
47
48 // Whether or not the password protection is enabled
49 "AuthenticationEnabled" : false,
50
51 // The list of the registered users. Because Orthanc uses HTTP
52 // Basic Authentication, the passwords are stored as plain text.
53 "RegisteredUsers" : {
54 "alice" : "alicePassword"
55 },
56
57
58
59 /**
60 * Network topology
61 **/
62
63 // The list of the known DICOM modalities
64 "DicomModalities" : {
65 // "sample" : [ "SAMPLESCP", "192.168.100.42", 104 ]
66 },
67
68 // The list of the known Orthanc peers (currently unused)
69 "OrthancPeers" : {
70 }
71 }