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