env for config, split multiple
This commit is contained in:
parent
0699bd6c78
commit
422cafb9c8
25
config/orthanc/housekeeper.json
Normal file
25
config/orthanc/housekeeper.json
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
"Housekeeper": {
|
||||||
|
"Enable": true,
|
||||||
|
"GlobalPropertyId": 1971,
|
||||||
|
"Force": false,
|
||||||
|
"ThrottleDelay": 15,
|
||||||
|
"Schedule": {
|
||||||
|
"Monday": ["3-6"],
|
||||||
|
"Tuesday": ["3-6"],
|
||||||
|
"Wednesday": ["3-6"],
|
||||||
|
"Thursday": ["3-6"],
|
||||||
|
"Friday": ["3-6"],
|
||||||
|
"Saturday": ["3-6"],
|
||||||
|
"Sunday": ["3-6"]
|
||||||
|
},
|
||||||
|
"Triggers": {
|
||||||
|
"StorageCompressionChange": true,
|
||||||
|
"MainDicomTagsChange": true,
|
||||||
|
"UnnecessaryDicomAsJsonFiles": true,
|
||||||
|
"IngestTranscodingChange": true,
|
||||||
|
"DicomWebCacheChange": true
|
||||||
|
},
|
||||||
|
"LimitMainDicomTagsReconstructLevel": "Study"
|
||||||
|
}
|
||||||
|
}
|
5
config/orthanc/modalities.json
Normal file
5
config/orthanc/modalities.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"DicomModalities": {
|
||||||
|
// "sample" : [ "STORESCP", "127.0.0.1", 2000 ]
|
||||||
|
}
|
||||||
|
}
|
13
config/orthanc/multitenant.json
Normal file
13
config/orthanc/multitenant.json
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"MultitenantDicom" : {
|
||||||
|
"Servers" : [
|
||||||
|
{
|
||||||
|
"AET" : "BLKFSHIN",
|
||||||
|
"Port" : 4243,
|
||||||
|
"Labels" : [ "BLACKFISH_CHENNAI" ],
|
||||||
|
"LabelsConstraint" : "All",
|
||||||
|
"LabelsStoreLevels" : [ "Patient", "Study", "Series", "Instance" ]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
@ -1,7 +1,11 @@
|
|||||||
{
|
{
|
||||||
"Name": "BlackFish",
|
"Name": "${ORTHANC_NAME:-BlackFish}",
|
||||||
"StorageDirectory": "/var/lib/orthanc/db",
|
"StorageDirectory": "/var/lib/orthanc/db",
|
||||||
"IndexDirectory": "/var/lib/orthanc/db",
|
"IndexDirectory": "/var/lib/orthanc/db",
|
||||||
|
"DicomServerEnabled": true,
|
||||||
|
"DicomAet": "${DICOM_AET:-BLACKFISH}",
|
||||||
|
"DicomCheckCalledAet": false,
|
||||||
|
"DicomPort": ${DICOM_PORT:-4242},
|
||||||
"StorageCompression": true,
|
"StorageCompression": true,
|
||||||
"MaximumStorageSize": 0,
|
"MaximumStorageSize": 0,
|
||||||
"MaximumPatientCount": 0,
|
"MaximumPatientCount": 0,
|
||||||
@ -79,10 +83,6 @@
|
|||||||
"WebDavEnabled": true,
|
"WebDavEnabled": true,
|
||||||
"WebDavDeleteAllowed": false,
|
"WebDavDeleteAllowed": false,
|
||||||
"WebDavUploadAllowed": true,
|
"WebDavUploadAllowed": true,
|
||||||
"DicomServerEnabled": true,
|
|
||||||
"DicomAet": "BLACKFISH",
|
|
||||||
"DicomCheckCalledAet": false,
|
|
||||||
"DicomPort": 4242,
|
|
||||||
"DefaultEncoding": "Utf8",
|
"DefaultEncoding": "Utf8",
|
||||||
"AcceptedTransferSyntaxes": [
|
"AcceptedTransferSyntaxes": [
|
||||||
"1.2.840.10008.1.*"
|
"1.2.840.10008.1.*"
|
||||||
@ -109,9 +109,6 @@
|
|||||||
"DicomAlwaysAllowGet": false,
|
"DicomAlwaysAllowGet": false,
|
||||||
"DicomAlwaysAllowMove": false,
|
"DicomAlwaysAllowMove": false,
|
||||||
"DicomCheckModalityHost": false,
|
"DicomCheckModalityHost": false,
|
||||||
"DicomModalities": {
|
|
||||||
// "sample" : [ "STORESCP", "127.0.0.1", 2000 ]
|
|
||||||
},
|
|
||||||
"DicomModalitiesInDatabase": false,
|
"DicomModalitiesInDatabase": false,
|
||||||
"DicomEchoChecksFind": false,
|
"DicomEchoChecksFind": false,
|
||||||
"DicomScuTimeout": 10,
|
"DicomScuTimeout": 10,
|
||||||
|
7
config/orthanc/webviewer.json
Normal file
7
config/orthanc/webviewer.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"WebViewer": {
|
||||||
|
"CachePath": "WebViewerCache",
|
||||||
|
"CacheSize": 128,
|
||||||
|
"Threads": 4
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user