Skip to content

Commit

Permalink
Update MaximumPatientCount limits (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
milanmlft authored Dec 4, 2023
1 parent 66157fe commit 0195754
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
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
}
}
}

0 comments on commit 0195754

Please sign in to comment.