Compression schemes for Microsoft IIS
Перейти к файлу
sujitnayak 2f9873bf33
Merge pull request #60 from microsoft/user/sujitn/vs2022
Update project files for VS2022
2023-02-03 10:24:14 -08:00
.github add CODEOWNERS 2018-04-16 17:56:41 -07:00
.pipelines Update project files for building VS2022 pool 2023-02-02 15:38:49 -08:00
CustomAction Update project files for building VS2022 pool 2023-02-02 15:38:49 -08:00
IIS-Common@551bf70acf Update iis-common and iis-setup 2023-02-02 11:22:45 -08:00
IIS-Setup@6a9ba63083 Update iis-common and iis-setup 2023-02-02 11:22:45 -08:00
Installer Moving to agent pool 'VSEngSS-MicroBuild2019-1ES'. 2022-03-01 16:14:01 -08:00
brotli Update project files for building VS2022 pool 2023-02-02 15:38:49 -08:00
build Move IISCompression installer from VSTS to Github (#21) 2019-03-29 15:25:05 -07:00
iisbrotli Update project files for building VS2022 pool 2023-02-02 15:38:49 -08:00
iiszlib Update project files for building VS2022 pool 2023-02-02 15:38:49 -08:00
submodules Update submodule reference to google/brotli v1.0.9. 2022-02-15 13:27:20 -08:00
zlib Update project files for building VS2022 pool 2023-02-02 15:38:49 -08:00
.gitattributes add submodule props and other config files 2018-04-09 18:48:01 -07:00
.gitignore Compression level validation (#17) 2018-10-01 18:44:15 -07:00
.gitmodules Move IISCompression installer from VSTS to Github (#21) 2019-03-29 15:25:05 -07:00
Compression.sln Move IISCompression installer from VSTS to Github (#21) 2019-03-29 15:25:05 -07:00
LICENSE Update file header, third party notice, and license based on the legal review (#8) 2018-04-24 22:32:31 -07:00
NuGet.config Moving to agent pool 'VSEngSS-MicroBuild2019-1ES'. 2022-03-01 16:14:01 -08:00
README.md added the instruction for the build environment (#42) 2020-08-06 12:21:56 -07:00
SECURITY.md Microsoft mandatory file 2022-08-02 16:08:14 +00:00
ThirdPartyNotices.txt update readme and tpn (#11) 2018-05-01 13:42:49 -07:00
build.cmd add build.cmd 2018-04-10 18:37:34 -07:00
cgmanifest.json Update submodule reference to google/brotli v1.0.9. 2022-02-15 13:27:20 -08:00

README.md

Build Status

Microsoft IIS Compression

IIS Compression is a bundle of two IIS compression scheme providers iisbrotli.dll and iiszlib.dll that enable IIS to compress HTTP response contents. iisbrotli.dll supports Brotli compression, while iiszlib.dll supports both Gzip and Deflate compression.

An IIS compression scheme provider is a pluggable extension of IIS StaticCompressionModule and DynamicCompressionModule - essentially a dynamic link library (dll) that implements the compression algorithm and exposes the IIS HTTP Compression API. IIS StaticCompressionModule and DynamicCompressionModule load the registered compression scheme providers into worker process at runtime, and leverage them to perform compression for static files and dynamically-generated contents, respectively.

Documentation

Installation

Download the Microsoft IIS Compression release from the following locations:

  • Microsoft IIS Compression (x86) here.

  • Microsoft IIS Compression (x64) here.

The IIS Compression installer registers iisbrotli.dll as the br (Brotli) compression scheme provider in applicationHost.config. It also replaces the default gzip compression scheme provider gzip.dll with iiszlib.dll. A sample httpCompression section in applicationHost.config is shown below:

<httpCompression directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files">
    <scheme name="br" dll="%ProgramFiles%\IIS\IIS Compression\iisbrotli.dll" />
    <scheme name="gzip" dll="%ProgramFiles%\IIS\IIS Compression\iiszlib.dll" />
    <dynamicTypes>
        <add mimeType="text/*" enabled="true" />
        <add mimeType="message/*" enabled="true" />
        <add mimeType="application/x-javascript" enabled="true" />
        <add mimeType="application/javascript" enabled="true" />
        <add mimeType="*/*" enabled="false" />
    </dynamicTypes>
    <staticTypes>
        <add mimeType="text/*" enabled="true" />
        <add mimeType="message/*" enabled="true" />
        <add mimeType="application/javascript" enabled="true" />
        <add mimeType="application/atom+xml" enabled="true" />
        <add mimeType="application/xaml+xml" enabled="true" />
        <add mimeType="image/svg+xml" enabled="true" />
        <add mimeType="*/*" enabled="false" />
    </staticTypes>
</httpCompression>

Install Visual Studio

  1. Install Visual Studio 2017
  2. You need to install these components additionally after(or while) installing Desktop development with C++
  • Wix Toolset Visual Studio 2017 Extension
  • Visual C++ ATL (x86/x64) with Spectre Mitigations
  • VC++ 2017 version 15.9 v14.16 latest v141 tools

Build

  1. Clone this project with submodules.
git clone --recurse-submodules https://github.com/Microsoft/IIS.Compression.git
  1. Build the code using the build.cmd (the location of msbuild.exe needs to be added into PATH environment variable).

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.