-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathorthanc.json.j2
72 lines (67 loc) · 2.04 KB
/
orthanc.json.j2
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"Name" : "Orthanc {{ orthanc_name }} on Synology",
"StorageDirectory" : "/var/lib/orthanc/storage",
"IndexDirectory" : "/var/lib/orthanc/storage",
"PostgreSQL" : {
"EnableIndex" : true,
"EnableStorage" : false,
"Host" : "{{ orthanc_name }}-postgres",
"Port" : 5432,
"Database" : "orthanc",
"Username" : "orthanc",
"Password" : "{{ orthanc_pg_password }}"
},
"StorageCompression" : true,
"MaximumStorageSize" : 0,
"MaximumPatientCount" : 0,
"LuaScripts" : [],
"Plugins" : [
"/usr/share/orthanc/plugins", "/usr/local/share/orthanc/plugins"
],
"HttpServerEnabled" : true,
"HttpPort" : 8042,
"HttpDescribeErrors" : true,
"HttpCompressionEnabled" : false,
"DicomServerEnabled" : true,
"DicomAet" : "{{ orthanc_name }}",
"DicomCheckCalledAet" : false,
"DicomPort" : 4242,
"DefaultEncoding" : "UTF8",
"DeflatedTransferSyntaxAccepted" : true,
"JpegTransferSyntaxAccepted" : true,
"Jpeg2000TransferSyntaxAccepted" : true,
"JpegLosslessTransferSyntaxAccepted" : true,
"JpipTransferSyntaxAccepted" : true,
"Mpeg2TransferSyntaxAccepted" : true,
"RleTransferSyntaxAccepted" : true,
"UnknownSopClassAccepted" : false,
"DicomScpTimeout" : 30,
"RemoteAccessAllowed" : true,
"SslEnabled" : false,
"SslCertificate" : "certificate.pem",
"AuthenticationEnabled" : true,
"RegisteredUsers" : { "orthanc": "orthanc" },
"DicomModalities" : { },
"DicomScuTimeout" : 10,
"OrthancPeers" : { },
"HttpProxy" : "",
"HttpTimeout" : 60,
"HttpsVerifyPeers" : true,
"HttpsCACertificates" : "",
"UserMetadata" : { },
"UserContentType" : { },
"StableAge" : 60,
"StrictAetComparison" : false,
"StoreMD5ForAttachments" : true,
"LimitFindResults" : 200,
"LimitFindInstances" : 500,
"LimitJobs" : 10,
"LogExportedResources" : true,
"KeepAlive" : false,
"StoreDicom" : true,
"DicomAssociationCloseDelay" : 5,
"QueryRetrieveSize" : 10,
"CaseSensitivePN" : false,
"AllowFindSopClassesInStudy" : false,
"Dictionary" : { }
}