Mercurial > hg > orthanc
annotate Resources/Configuration.json @ 50:a15e90e5d6fc
rename in code
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 05 Sep 2012 15:50:12 +0200 |
parents | e1a3ae0dadf3 |
children | 601ee9b7f2c7 |
rev | line source |
---|---|
12 | 1 { |
24 | 2 /** |
49
e1a3ae0dadf3
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
34
diff
changeset
|
3 * General configuration of Palanthir |
24 | 4 **/ |
5 | |
23 | 6 // Path to the directory that holds the database |
49
e1a3ae0dadf3
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
34
diff
changeset
|
7 "StorageDirectory" : "PalanthirStorage", |
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 |
12 | 25 "DicomAet" : "ANY-SCP", |
23 | 26 |
27 // The DICOM port | |
12 | 28 "DicomPort" : 4242, |
23 | 29 |
24 | 30 |
31 | |
32 /** | |
33 * Security-related options | |
34 **/ | |
12 | 35 |
34
96e57b863dd9
option to disallow remote access
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
36 // Whether remote hosts can connect to the HTTP server |
96e57b863dd9
option to disallow remote access
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
37 "RemoteAccessAllowed" : false, |
96e57b863dd9
option to disallow remote access
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
38 |
23 | 39 // Whether or not SSL is enabled |
40 "SslEnabled" : false, | |
41 | |
42 // Path to the SSL certificate | |
43 "SslCertificate" : "certificate.pem", | |
44 | |
24 | 45 // 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
|
46 "AuthenticationEnabled" : false, |
24 | 47 |
49
e1a3ae0dadf3
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
34
diff
changeset
|
48 // The list of the registered users. Because Palanthir uses HTTP |
24 | 49 // Basic Authentication, the passwords are stored as plain text. |
50 "RegisteredUsers" : { | |
51 "alice" : "alicePassword" | |
52 }, | |
53 | |
54 | |
25
dd1489098265
basic http authentication
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
24
diff
changeset
|
55 |
24 | 56 /** |
57 * Network topology | |
58 **/ | |
59 | |
60 // The list of the known DICOM modalities | |
61 "DicomModalities" : { | |
62 // "sample" : [ "SAMPLESCP", "192.168.100.42", 104 ] | |
63 }, | |
64 | |
49
e1a3ae0dadf3
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
34
diff
changeset
|
65 // The list of the known Palanthir peers (currently unused) |
e1a3ae0dadf3
renaming of resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
34
diff
changeset
|
66 "PalanthirPeers" : { |
12 | 67 } |
68 } |