env for config, split multiple

This commit is contained in:
Dr Masroor Ehsan 2025-02-01 10:56:28 +06:00
parent 0699bd6c78
commit 422cafb9c8
5 changed files with 55 additions and 8 deletions

View 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"
}
}

View File

@ -0,0 +1,5 @@
{
"DicomModalities": {
// "sample" : [ "STORESCP", "127.0.0.1", 2000 ]
}
}

View File

@ -0,0 +1,13 @@
{
"MultitenantDicom" : {
"Servers" : [
{
"AET" : "BLKFSHIN",
"Port" : 4243,
"Labels" : [ "BLACKFISH_CHENNAI" ],
"LabelsConstraint" : "All",
"LabelsStoreLevels" : [ "Patient", "Study", "Series", "Instance" ]
}
]
}
}

View File

@ -1,7 +1,11 @@
{
"Name": "BlackFish",
"Name": "${ORTHANC_NAME:-BlackFish}",
"StorageDirectory": "/var/lib/orthanc/db",
"IndexDirectory": "/var/lib/orthanc/db",
"DicomServerEnabled": true,
"DicomAet": "${DICOM_AET:-BLACKFISH}",
"DicomCheckCalledAet": false,
"DicomPort": ${DICOM_PORT:-4242},
"StorageCompression": true,
"MaximumStorageSize": 0,
"MaximumPatientCount": 0,
@ -79,10 +83,6 @@
"WebDavEnabled": true,
"WebDavDeleteAllowed": false,
"WebDavUploadAllowed": true,
"DicomServerEnabled": true,
"DicomAet": "BLACKFISH",
"DicomCheckCalledAet": false,
"DicomPort": 4242,
"DefaultEncoding": "Utf8",
"AcceptedTransferSyntaxes": [
"1.2.840.10008.1.*"
@ -109,9 +109,6 @@
"DicomAlwaysAllowGet": false,
"DicomAlwaysAllowMove": false,
"DicomCheckModalityHost": false,
"DicomModalities": {
// "sample" : [ "STORESCP", "127.0.0.1", 2000 ]
},
"DicomModalitiesInDatabase": false,
"DicomEchoChecksFind": false,
"DicomScuTimeout": 10,

View File

@ -0,0 +1,7 @@
{
"WebViewer": {
"CachePath": "WebViewerCache",
"CacheSize": 128,
"Threads": 4
}
}