Settings are made as follows:
C:\Windows\System32\Inetsrv\Appcmd.exe set config -section:urlCompression -doStaticCompression:true
C:\Windows\System32\Inetsrv\Appcmd.exe set config -section:httpCompression -[name='gzip'].staticCompressionLevel:9
However, despite the fact that the server sends a request with Accept-Encoding: gzip , the statics are not compressed (there is no Content-Encoding in the response, and the content is transmitted in full). What is the problem here?