## orthanc.json excerpts 81: // this value to "1". 82: "ConcurrentJobs" : 0, 83: 144: // The DICOM Application Entity Title 145: "DicomAet" : "SRV-ORTH-01", 146: 151: // The DICOM port 152: "DicomPort" : 1025, 154: 277: "Radiant_05" : [ "SRVRADIANT5", "10.100.0.14", 11116 ], 278: "Radiant_SRV" : [ "SRVRADIANT7", "10.100.0.14", 11117 ], 473: // Orthanc 1.10.0, before this version, the value was fixed to 4) 474: "DicomThreadsCount" : 30, 475: 579: "LimitFindResults" : 50, 580: 619: // Number of threads that are used by the embedded HTTP server. 620: "HttpThreadsCount" : 60, 621: 734: // corresponds to the behavior of Orthanc <= 1.5.0. 735: "StorageAccessOnFind" : "Never", 736: ## postgresql.json (redacted) { /** * Configuration to use PostgreSQL instead of the default SQLite * back-end of Orthanc. You will have to install the * "orthanc-postgresql" package to take advantage of this feature. **/ "PostgreSQL" : { // Enable the use of PostgreSQL to store the Orthanc index? "EnableIndex" : true, // Enable the use of PostgreSQL to store the DICOM files? "EnableStorage" : false, // Option 1: Specify explicit authentication parameters "Host" : "localhost", "Port" : 5432, "Database" : "orthanc_db", "Username" : "postgres", "Password" : "***REDACTED***", "IndexConnectionsCount" : 50, "MaximumConnectionRetries" : 10, "EnableVerboseLogs" : false, "ConnectionRetryInterval" : 5, "TransactionMode": "ReadCommitted", // Option 2: Authenticate using PostgreSQL connection URI // "ConnectionUri" : "postgresql://orthanc_user:my_password@localhost:5432/orthanc_db", // Optional: Disable the locking of the PostgreSQL database "Lock" : false } }