comparison Resources/Configuration.json @ 2229:0f09c1d18584

note about backslashes
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 14 Dec 2016 08:44:42 +0100
parents 90ea60bee5ff
children e5fc5db6a84b
comparison
equal deleted inserted replaced
2228:577888e9ed2f 2229:0f09c1d18584
5 5
6 // The logical name of this instance of Orthanc. This one is 6 // The logical name of this instance of Orthanc. This one is
7 // displayed in Orthanc Explorer and at the URI "/system". 7 // displayed in Orthanc Explorer and at the URI "/system".
8 "Name" : "MyOrthanc", 8 "Name" : "MyOrthanc",
9 9
10 // Path to the directory that holds the heavyweight files 10 // Path to the directory that holds the heavyweight files (i.e. the
11 // (i.e. the raw DICOM instances) 11 // raw DICOM instances). Backslashes must be either escaped by
12 // doubling them, or replaced by forward slashes "/".
12 "StorageDirectory" : "OrthancStorage", 13 "StorageDirectory" : "OrthancStorage",
13 14
14 // Path to the directory that holds the SQLite index (if unset, 15 // Path to the directory that holds the SQLite index (if unset, the
15 // the value of StorageDirectory is used). This index could be 16 // value of StorageDirectory is used). This index could be stored on
16 // stored on a RAM-drive or a SSD device for performance reasons. 17 // a RAM-drive or a SSD device for performance reasons.
17 "IndexDirectory" : "OrthancStorage", 18 "IndexDirectory" : "OrthancStorage",
18 19
19 // Enable the transparent compression of the DICOM instances 20 // Enable the transparent compression of the DICOM instances
20 "StorageCompression" : false, 21 "StorageCompression" : false,
21 22
35 36
36 // List of paths to the plugins that are to be loaded into this 37 // List of paths to the plugins that are to be loaded into this
37 // instance of Orthanc (e.g. "./libPluginTest.so" for Linux, or 38 // instance of Orthanc (e.g. "./libPluginTest.so" for Linux, or
38 // "./PluginTest.dll" for Windows). These paths can refer to 39 // "./PluginTest.dll" for Windows). These paths can refer to
39 // folders, in which case they will be scanned non-recursively to 40 // folders, in which case they will be scanned non-recursively to
40 // find shared libraries. 41 // find shared libraries. Backslashes must be either escaped by
42 // doubling them, or replaced by forward slashes "/".
41 "Plugins" : [ 43 "Plugins" : [
42 ], 44 ],
43 45
44 46
45 47