Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update MaximumPatientCount limits #169

Merged
merged 1 commit into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions orthanc/orthanc-anon/config/orthanc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"${ORTHANC_USERNAME}": "${ORTHANC_PASSWORD}"
},

// Limit the maximum number of instances
"MaximumPatientCount": 1200,

// Path to the directory that holds the heavyweight files (i.e. the
// raw DICOM instances). Backslashes must be either escaped by
// doubling them, or replaced by forward slashes "/".
"StorageDirectory" : "/var/lib/orthanc/db",

// Limit the maximum number of instances
"MaximumPatientCount": 200,

// Path to the directory that holds the SQLite index (if unset, the
// value of StorageDirectory is used). This index could be stored on
// a RAM-drive or a SSD device for performance reasons.
Expand All @@ -29,4 +29,4 @@
// Trust CAs for DICOMweb over HTTPS
"HttpsCACertificates": "/etc/ssl/certs/ca-certificates.crt"

}
}
8 changes: 4 additions & 4 deletions orthanc/orthanc-raw/config/orthanc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"${ORTHANC_USERNAME}": "${ORTHANC_PASSWORD}"
},

// Limit the maximum number of instances
"MaximumPatientCount": 1200,

// Path to the directory that holds the heavyweight files (i.e. the
// raw DICOM instances). Backslashes must be either escaped by
// doubling them, or replaced by forward slashes "/".
"StorageDirectory" : "/var/lib/orthanc/db",

// Limit the maximum number of instances
"MaximumPatientCount": 20000,

// Path to the directory that holds the SQLite index (if unset, the
// value of StorageDirectory is used). This index could be stored on
// a RAM-drive or a SSD device for performance reasons.
Expand All @@ -25,4 +25,4 @@
"Gdcm" : {
"Enable" : true
}
}
}