Mercurial > hg > orthanc
annotate Resources/Configuration.json @ 151:11e48e70c039
instance naming
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 23 Oct 2012 14:34:57 +0200 |
parents | efe5be1d6afc |
children | 616a2aaf5a4d dcf6475e2b40 |
rev | line source |
---|---|
12 | 1 { |
24 | 2 /** |
64
71c4a4abe90b
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
3 * General configuration of Orthanc |
24 | 4 **/ |
5 | |
23 | 6 // Path to the directory that holds the database |
64
71c4a4abe90b
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
7 "StorageDirectory" : "OrthancStorage", |
23 | 8 |
151 | 9 // The logical name of this instance of Orthanc. This one is |
10 // displayed in Orthanc Explorer and at the URI "/system". | |
11 "Name" : "MyOrthanc", | |
24 | 12 |
13 | |
14 /** | |
15 * Configuration of the HTTP server | |
16 **/ | |
17 | |
23 | 18 // HTTP port for the REST services and for the GUI |
151 | 19 "HttpPort" : 8042, |
12 | 20 |
24 | 21 |
22 | |
23 /** | |
24 * Configuration of the DICOM server | |
25 **/ | |
26 | |
23 | 27 // The DICOM Application Entity Title |
65 | 28 "DicomAet" : "ORTHANC", |
23 | 29 |
55 | 30 // Check whether the called AET corresponds during a DICOM request |
145 | 31 "DicomCheckCalledAet" : false, |
55 | 32 |
23 | 33 // The DICOM port |
12 | 34 "DicomPort" : 4242, |
23 | 35 |
24 | 36 |
37 | |
38 /** | |
39 * Security-related options | |
40 **/ | |
12 | 41 |
34
96e57b863dd9
option to disallow remote access
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
42 // Whether remote hosts can connect to the HTTP server |
145 | 43 "RemoteAccessAllowed" : false, |
34
96e57b863dd9
option to disallow remote access
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
44 |
23 | 45 // Whether or not SSL is enabled |
46 "SslEnabled" : false, | |
47 | |
48 // Path to the SSL certificate | |
49 "SslCertificate" : "certificate.pem", | |
50 | |
24 | 51 // Whether or not the password protection is enabled |
34
96e57b863dd9
option to disallow remote access
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
52 "AuthenticationEnabled" : false, |
24 | 53 |
64
71c4a4abe90b
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
54 // The list of the registered users. Because Orthanc uses HTTP |
24 | 55 // Basic Authentication, the passwords are stored as plain text. |
56 "RegisteredUsers" : { | |
57 "alice" : "alicePassword" | |
58 }, | |
59 | |
60 | |
25
dd1489098265
basic http authentication
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
24
diff
changeset
|
61 |
24 | 62 /** |
63 * Network topology | |
64 **/ | |
65 | |
66 // The list of the known DICOM modalities | |
67 "DicomModalities" : { | |
68 // "sample" : [ "SAMPLESCP", "192.168.100.42", 104 ] | |
69 }, | |
70 | |
64
71c4a4abe90b
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
71 // The list of the known Orthanc peers (currently unused) |
71c4a4abe90b
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
72 "OrthancPeers" : { |
12 | 73 } |
74 } |