-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdicom.json
More file actions
112 lines (100 loc) · 4.22 KB
/
Copy pathdicom.json
File metadata and controls
112 lines (100 loc) · 4.22 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"DicomAet" : "${ORTHANC_RAW_AE_TITLE}",
"DicomModalities" : {
"UCPRIMARYQR" : {
"AET" : "${PRIMARY_DICOM_SOURCE_AE_TITLE}",
"Port" : "${PRIMARY_DICOM_SOURCE_PORT}",
"Host" : "${PRIMARY_DICOM_SOURCE_IP_ADDR}",
"Manufacturer" : "Generic",
"AllowEcho" : true,
"AllowFind" : false,
"AllowFindWorklist" : false,
"AllowGet" : false,
"AllowMove" : false,
"AllowStore" : true,
"AllowStorageCommitment" : false,
"AllowTranscoding" : true,
"UseDicomTls" : false,
"Timeout" : 120
},
"UCSECONDARYQR" : {
"AET" : "${SECONDARY_DICOM_SOURCE_AE_TITLE}",
"Port" : "${SECONDARY_DICOM_SOURCE_PORT}",
"Host" : "${SECONDARY_DICOM_SOURCE_IP_ADDR}",
"Manufacturer" : "Generic",
"AllowEcho" : true,
"AllowFind" : false,
"AllowFindWorklist" : false,
"AllowGet" : false,
"AllowMove" : false,
"AllowStore" : true,
"AllowStorageCommitment" : false,
"AllowTranscoding" : true,
"UseDicomTls" : false,
"Timeout" : 120
},
"PIXL-Anon" : {
"AET" : "${ORTHANC_ANON_AE_TITLE}",
"Port" : "${ORTHANC_ANON_DICOM_PORT}",
"Host" : "${ORTHANC_ANON_HOSTNAME}",
"Manufacturer" : "Generic",
"AllowEcho" : true,
"AllowFind" : true,
"AllowFindWorklist" : false,
"AllowGet" : false,
"AllowMove" : true,
"AllowStore" : false,
"AllowStorageCommitment" : false,
"AllowTranscoding" : true,
"UseDicomTls" : false,
"Timeout" : 120
}
},
// Check whether the called AET corresponds to the AET of Orthanc
// during an incoming DICOM SCU request
"DicomCheckCalledAet" : true,
// Whether Orthanc accepts to act as C-STORE SCP for unknown storage
// SOP classes (aka. "promiscuous mode")
"UnknownSopClassAccepted" : true,
// Whether the Orthanc SCP allows incoming C-ECHO requests, even
// from SCU modalities it does not know about (i.e. that are not
// listed in the "DicomModalities" option above). Orthanc 1.3.0
// is the only version to behave as if this argument were set to "false".
"DicomAlwaysAllowEcho" : true,
// Whether the Orthanc SCP allows incoming C-STORE requests, even
// from SCU modalities it does not know about (i.e. that are not
// listed in the "DicomModalities" option above)
"DicomAlwaysAllowStore" : true,
// Whether the Orthanc SCP allows incoming C-FIND requests, even
// from SCU modalities it does not know about (i.e. that are not
// listed in the "DicomModalities" option above). Setting this
// option to "true" implies security risks. (new in Orthanc 1.9.0)
// Note: From Orthanc 1.10.0, this option only applies to C-FIND
// requests for patients/studies/series/instances. Use option
// "DicomAlwaysAllowFindWorklist" for worklists.
"DicomAlwaysAllowFind" : false,
// Whether the Orthanc SCP allows incoming C-FIND requests for worklists,
// even from SCU modalities it does not know about (i.e. that are not
// listed in the "DicomModalities" option above). Setting this
// option to "true" implies security risks. (new in Orthanc 1.10.0)
"DicomAlwaysAllowFindWorklist" : false,
// Whether the Orthanc SCP allows incoming C-GET requests, even
// from SCU modalities it does not know about (i.e. that are not
// listed in the "DicomModalities" option above). Setting this
// option to "true" implies security risks. (new in Orthanc 1.9.0)
"DicomAlwaysAllowGet" : false,
// Whether the Orthanc SCP allows incoming C-MOVE requests, even
// from SCU modalities it does not know about (i.e. that are not
// listed in the "DicomModalities" option above). Setting this
// option to "true" implies security risks. (new in Orthanc 1.9.7)
"DicomAlwaysAllowMove" : false,
// Whether Orthanc checks the IP/hostname address of the remote
// modality initiating a DICOM connection (as listed in the
// "DicomModalities" option above). If this option is set to
// "false", Orthanc only checks the AET of the remote modality.
"DicomCheckModalityHost" : false,
// Overwrite instances with the same UID
// This allows us to set the project name tag in-place without modifying the
//StudyInstanceUID, SeriesInstanceUID, and SOPInstanceUID
"OverwriteInstance": true
}