Mercurial > hg > orthanc
annotate Resources/Configuration.json @ 267:2ccf556dc1ce Orthanc-0.3.1
close
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 29 Apr 2013 12:55:01 +0200 |
parents | 6d9be2b470b4 |
children | e6a4c4329481 |
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 |
16 | |
164 | 17 |
24 | 18 /** |
19 * Configuration of the HTTP server | |
20 **/ | |
21 | |
23 | 22 // HTTP port for the REST services and for the GUI |
151 | 23 "HttpPort" : 8042, |
12 | 24 |
24 | 25 |
26 | |
27 /** | |
28 * Configuration of the DICOM server | |
29 **/ | |
30 | |
23 | 31 // The DICOM Application Entity Title |
65 | 32 "DicomAet" : "ORTHANC", |
23 | 33 |
55 | 34 // Check whether the called AET corresponds during a DICOM request |
145 | 35 "DicomCheckCalledAet" : false, |
55 | 36 |
23 | 37 // The DICOM port |
12 | 38 "DicomPort" : 4242, |
23 | 39 |
24 | 40 |
41 | |
42 /** | |
43 * Security-related options | |
44 **/ | |
12 | 45 |
34
96e57b863dd9
option to disallow remote access
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
46 // Whether remote hosts can connect to the HTTP server |
145 | 47 "RemoteAccessAllowed" : false, |
34
96e57b863dd9
option to disallow remote access
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
48 |
23 | 49 // Whether or not SSL is enabled |
50 "SslEnabled" : false, | |
51 | |
52 // Path to the SSL certificate | |
53 "SslCertificate" : "certificate.pem", | |
54 | |
24 | 55 // 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
|
56 "AuthenticationEnabled" : false, |
24 | 57 |
64
71c4a4abe90b
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
58 // The list of the registered users. Because Orthanc uses HTTP |
24 | 59 // Basic Authentication, the passwords are stored as plain text. |
60 "RegisteredUsers" : { | |
61 "alice" : "alicePassword" | |
62 }, | |
63 | |
64 | |
25
dd1489098265
basic http authentication
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
24
diff
changeset
|
65 |
24 | 66 /** |
67 * Network topology | |
68 **/ | |
69 | |
70 // The list of the known DICOM modalities | |
71 "DicomModalities" : { | |
227
209ca3f6db62
dicom-scu from rest
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
167
diff
changeset
|
72 /** |
209ca3f6db62
dicom-scu from rest
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
167
diff
changeset
|
73 * Uncommenting the following line would enable Orthanc to |
209ca3f6db62
dicom-scu from rest
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
167
diff
changeset
|
74 * 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
|
75 * store started by the command line "storescp 2000". |
209ca3f6db62
dicom-scu from rest
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
167
diff
changeset
|
76 **/ |
209ca3f6db62
dicom-scu from rest
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
167
diff
changeset
|
77 // "sample" : [ "STORESCP", "localhost", 2000 ] |
24 | 78 }, |
79 | |
64
71c4a4abe90b
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
80 // The list of the known Orthanc peers (currently unused) |
71c4a4abe90b
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
81 "OrthancPeers" : { |
12 | 82 } |
83 } |