-
Notifications
You must be signed in to change notification settings - Fork 5
/
Configuration.json
35 lines (35 loc) · 1.05 KB
/
Configuration.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
// Basic Configuration.json for simplified local testing
// See https://github.com/camicroscope/Distro/ for a more detailed template
"Plugins" : [
"/root/src/libOrthancIndexer.so"
],
"Indexer" : {
"Enable" : true,
"Folders" : [ "/images/" ],
"Interval" : 10
},
"StorageCompression" : false, // "true" is incompatible with caMicroscope
"Name" : "camic-orthanc",
"DicomAet" : "CAMIC-ORTHANC",
"StorageDirectory" : "/images/",
"IndexDirectory" : "/root/orthanc-index",
"HttpServerEnabled" : true,
"OrthancExplorerEnabled" : true,
"HttpPort" : 8042,
"RemoteAccessAllowed" : true,
"AuthenticationEnabled" : false,
"HttpsVerifyPeers" : false,
"SslEnabled" : false,
"MallocArenaMax" : 5,
"DicomThreadsCount" : 3,
"DicomPort" : 11112,
"DicomTlsEnabled" : false,
"DicomTlsRemoteCertificateRequired" : false,
"DicomAlwaysAllowStore" : true,
"DicomAlwaysAllowFind" : true,
"DicomAlwaysAllowFindWorklist" : true,
"DicomAlwaysAllowGet" : true,
"DicomAlwaysAllowMove" : true,
"DicomCheckModalityHost" : false
}