Mercurial > hg > orthanc
annotate Resources/Configuration.json @ 270:e6a4c4329481
parameters for storage capacity
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 07 Dec 2012 15:01:12 +0100 |
parents | 6d9be2b470b4 |
children | 87e09002576f |
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 | |
236 | 6 // The logical name of this instance of Orthanc. This one is |
7 // displayed in Orthanc Explorer and at the URI "/system". | |
8 "Name" : "MyOrthanc", | |
9 | |
23 | 10 // Path to the directory that holds the database |
64
71c4a4abe90b
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
11 "StorageDirectory" : "OrthancStorage", |
23 | 12 |
236 | 13 // Enable the transparent compression of the DICOM instances |
14 "StorageCompression" : false, | |
24 | 15 |
270
e6a4c4329481
parameters for storage capacity
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
236
diff
changeset
|
16 // Maximum size of the storage in MB (a value of "0" indicates no |
e6a4c4329481
parameters for storage capacity
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
236
diff
changeset
|
17 // limit on the storage size) |
e6a4c4329481
parameters for storage capacity
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
236
diff
changeset
|
18 "MaximumStorageSize" : 0, |
e6a4c4329481
parameters for storage capacity
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
236
diff
changeset
|
19 |
e6a4c4329481
parameters for storage capacity
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
236
diff
changeset
|
20 // Maximum number of patients that can be stored at a given time |
e6a4c4329481
parameters for storage capacity
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
236
diff
changeset
|
21 // in the storage (a value of "0" indicates no limit on the number |
e6a4c4329481
parameters for storage capacity
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
236
diff
changeset
|
22 // of patients) |
e6a4c4329481
parameters for storage capacity
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
236
diff
changeset
|
23 "MaximumPatientCount" : 0, |
24 | 24 |
164 | 25 |
24 | 26 /** |
27 * Configuration of the HTTP server | |
28 **/ | |
29 | |
23 | 30 // HTTP port for the REST services and for the GUI |
151 | 31 "HttpPort" : 8042, |
12 | 32 |
24 | 33 |
34 | |
35 /** | |
36 * Configuration of the DICOM server | |
37 **/ | |
38 | |
23 | 39 // The DICOM Application Entity Title |
65 | 40 "DicomAet" : "ORTHANC", |
23 | 41 |
55 | 42 // Check whether the called AET corresponds during a DICOM request |
145 | 43 "DicomCheckCalledAet" : false, |
55 | 44 |
23 | 45 // The DICOM port |
12 | 46 "DicomPort" : 4242, |
23 | 47 |
24 | 48 |
49 | |
50 /** | |
51 * Security-related options | |
52 **/ | |
12 | 53 |
34
96e57b863dd9
option to disallow remote access
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
54 // Whether remote hosts can connect to the HTTP server |
145 | 55 "RemoteAccessAllowed" : false, |
34
96e57b863dd9
option to disallow remote access
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
56 |
23 | 57 // Whether or not SSL is enabled |
58 "SslEnabled" : false, | |
59 | |
60 // Path to the SSL certificate | |
61 "SslCertificate" : "certificate.pem", | |
62 | |
24 | 63 // 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
|
64 "AuthenticationEnabled" : false, |
24 | 65 |
64
71c4a4abe90b
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
66 // The list of the registered users. Because Orthanc uses HTTP |
24 | 67 // Basic Authentication, the passwords are stored as plain text. |
68 "RegisteredUsers" : { | |
69 "alice" : "alicePassword" | |
70 }, | |
71 | |
72 | |
25
dd1489098265
basic http authentication
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
24
diff
changeset
|
73 |
24 | 74 /** |
75 * Network topology | |
76 **/ | |
77 | |
78 // The list of the known DICOM modalities | |
79 "DicomModalities" : { | |
227
209ca3f6db62
dicom-scu from rest
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
167
diff
changeset
|
80 /** |
209ca3f6db62
dicom-scu from rest
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
167
diff
changeset
|
81 * Uncommenting the following line would enable Orthanc to |
209ca3f6db62
dicom-scu from rest
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
167
diff
changeset
|
82 * connect to an instance of the "storescp" open-source DICOM |
209ca3f6db62
dicom-scu from rest
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
167
diff
changeset
|
83 * store started by the command line "storescp 2000". |
209ca3f6db62
dicom-scu from rest
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
167
diff
changeset
|
84 **/ |
209ca3f6db62
dicom-scu from rest
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
167
diff
changeset
|
85 // "sample" : [ "STORESCP", "localhost", 2000 ] |
24 | 86 }, |
87 | |
64
71c4a4abe90b
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
88 // The list of the known Orthanc peers (currently unused) |
71c4a4abe90b
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
89 "OrthancPeers" : { |
12 | 90 } |
91 } |