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 index.md #443

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ HTTP compression is usually available on the default installation of IIS 7 and l
| `dynamicCompressionEnableCpuUsage` | Optional uint attribute. <br><br>Specifies the percentage of CPU utilization below which dynamic compression will be enabled. The value must be between 0 and 100. Average CPU utilization is calculated every 30 seconds. <br><br>**Note:** This attribute acts as a lower CPU limit below which dynamic compression is turned on. When CPU utilization rises above the value specified in the **dynamicCompressionDisableCpuUsage** attribute, dynamic compression will be disabled.<br><br>The default value is `50`. |
| `expiresHeader` | Optional string attribute. <br><br>Specifies the content of the HTTP Expires header that is sent with all requested compressed files, together with the Cache-Control header specified in the **cacheControlHeader** attribute. This combination of headers ensures that older clients and proxy servers do not try to cache compressed files. To enable this setting, you must set the **sendCacheHeaders** attribute to **true**. The World Wide Web Publishing Service (WWW service) must be restarted before changes to this property take effect. <br><br>The default value is `Wed, 01 Jan 1997 12:00:00 GMT`. |
| `maxDiskSpaceUsage` | Optional uint attribute. <br><br>Specifies the number of megabytes of disk space that compressed files can occupy in the compression directory. When the space used by compressed files exceeds 90 percent of the value in this attribute, IIS deletes the least recently used files until a 90-percent usage level is reached.<br><br>**Note:** In IIS 6.0, this limit was expressed in bytes; in IIS 7, it is expressed in megabytes. In IIS 7 the limit is applied per application pool.<br><br>The default value is `100`. |
| `minFileSizeForComp` | Optional uint attribute. <br><br>Specifies the minimum number of kilobytes a file must contain in order to use on-demand compression. <br><br>The default value for IIS 7.5 is `2700`; for IIS 7.0 the default value was `256`. |
| `minFileSizeForComp` | Optional uint attribute. <br><br>Specifies the minimum number of bytes a file must contain in order to use on-demand compression. <br><br>The default value for IIS 7.5 is `2700`; for IIS 7.0 the default value was `256`. |
| `noCompressionForHttp10` | Optional Boolean attribute. <br><br>Specifies whether compression is disabled for requests that contain an HTTP 1.0 version number.<br><br>**Note:** Some HTTP 1.0 clients do not handle the caching of compressed objects correctly. You can use this setting to avoid returning a compressed file to a client that cannot decompress it.<br><br>The default value is `true`. |
| `noCompressionForProxies` | Optional Boolean attribute. <br><br>Specifies whether the HTTP 1.1 response is disabled for compression requests that come through proxy servers.<br><br>**Note:** Some HTTP proxy servers do not handle the caching of compressed objects correctly. You can use this setting to avoid returning a compressed file to a proxy server that cannot decompress it.<br><br>The default value is `true`. |
| `noCompressionForRange` | Optional Boolean attribute. <br><br>Specifies whether compression is disabled for HTTP requests that include the Range header.<br><br>**Note:** Some clients cannot handle range requests correctly. You can use this setting to avoid returning a compressed file to a client that cannot decompress it.<br><br>The default value is `true`. |
Expand Down