Mercurial > hg > orthanc
annotate Resources/Configuration.json @ 100:27dc762e3dc8
getting rid of static dcmtk for debian
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 03 Oct 2012 09:33:25 +0200 |
parents | e9e3c9e6a555 |
children | aa6c8a942952 |
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 |
24 | 9 |
10 | |
11 /** | |
12 * Configuration of the HTTP server | |
13 **/ | |
14 | |
23 | 15 // HTTP port for the REST services and for the GUI |
12 | 16 "HttpPort" : 8000, |
17 | |
24 | 18 |
19 | |
20 /** | |
21 * Configuration of the DICOM server | |
22 **/ | |
23 | |
23 | 24 // The DICOM Application Entity Title |
65 | 25 "DicomAet" : "ORTHANC", |
23 | 26 |
55 | 27 // Check whether the called AET corresponds during a DICOM request |
65 | 28 "DicomCheckCalledAet" : false, |
55 | 29 |
23 | 30 // The DICOM port |
12 | 31 "DicomPort" : 4242, |
23 | 32 |
24 | 33 |
34 | |
35 /** | |
36 * Security-related options | |
37 **/ | |
12 | 38 |
34
96e57b863dd9
option to disallow remote access
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
39 // Whether remote hosts can connect to the HTTP server |
100
27dc762e3dc8
getting rid of static dcmtk for debian
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
65
diff
changeset
|
40 "RemoteAccessAllowed" : true, |
34
96e57b863dd9
option to disallow remote access
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
41 |
23 | 42 // Whether or not SSL is enabled |
43 "SslEnabled" : false, | |
44 | |
45 // Path to the SSL certificate | |
46 "SslCertificate" : "certificate.pem", | |
47 | |
24 | 48 // 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
|
49 "AuthenticationEnabled" : false, |
24 | 50 |
64
71c4a4abe90b
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
51 // The list of the registered users. Because Orthanc uses HTTP |
24 | 52 // Basic Authentication, the passwords are stored as plain text. |
53 "RegisteredUsers" : { | |
54 "alice" : "alicePassword" | |
55 }, | |
56 | |
57 | |
25
dd1489098265
basic http authentication
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
24
diff
changeset
|
58 |
24 | 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 | |
64
71c4a4abe90b
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
68 // The list of the known Orthanc peers (currently unused) |
71c4a4abe90b
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
55
diff
changeset
|
69 "OrthancPeers" : { |
12 | 70 } |
71 } |