.net 在Azure IIS中启用HTTP gzip压缩

.net 在Azure IIS中启用HTTP gzip压缩,.net,http,azure-web-app-service,http-compression,appveyor,.net,Http,Azure Web App Service,Http Compression,Appveyor,我需要在Azure部署上启用gzip压缩 我试过: <httpCompression directory=""> <scheme name="gzip" dll=""/> <dynamicTypes> <add mimeType="*/*" enabled="true"/> </dynamicTypes> <staticTypes> <add mimeTyp

我需要在Azure部署上启用gzip压缩

我试过:

   <httpCompression directory="">
    <scheme name="gzip" dll=""/>
    <dynamicTypes>
      <add mimeType="*/*" enabled="true"/>
    </dynamicTypes>
    <staticTypes>
      <add mimeType="*/*" enabled="true"/>
    </staticTypes>
  </httpCompression>

但是我应该如何设置临时文件夹和DLL文件夹呢