comparison OrthancServer/Resources/Configuration.json @ 5407:3206537cbb56

HttpCompression: now disabled by default + only compress known compressible content types
author Alain Mazy <am@osimis.io>
date Sat, 04 Nov 2023 14:46:38 +0100
parents 5b2a5cc64cb1
children 342b25e120d1
comparison
equal deleted inserted replaced
5405:62bb63346185 5407:3206537cbb56
123 "HttpDescribeErrors" : true, 123 "HttpDescribeErrors" : true,
124 124
125 // Enable HTTP compression to improve network bandwidth utilization, 125 // Enable HTTP compression to improve network bandwidth utilization,
126 // at the expense of more computations on the server. Orthanc 126 // at the expense of more computations on the server. Orthanc
127 // supports the "gzip" and "deflate" HTTP encodings. 127 // supports the "gzip" and "deflate" HTTP encodings.
128 "HttpCompressionEnabled" : true, 128 // When working on a LAN or on localhost, you should typically set
129 // this configuration to false while when working on low-bandwidth,
130 // you should set it to true.
131 // Note in versions up to 1.12.1, the default value was "true" and is
132 // "false" since 1.12.2.
133 "HttpCompressionEnabled" : false,
129 134
130 // Enable the publication of the content of the Orthanc server as a 135 // Enable the publication of the content of the Orthanc server as a
131 // WebDAV share (new in Orthanc 1.8.0). On the localhost, the WebDAV 136 // WebDAV share (new in Orthanc 1.8.0). On the localhost, the WebDAV
132 // share is mapped as "http://localhost:8042/webdav/". 137 // share is mapped as "http://localhost:8042/webdav/".
133 "WebDavEnabled" : true, 138 "WebDavEnabled" : true,