How enable gzip compression on asphostportal shared windows hosting

Discussion of Transmission that doesn't fit in the other categories
Post Reply
hason21
Posts: 1
Joined: Fri Nov 25, 2016 8:09 am

How enable gzip compression on asphostportal shared windows hosting

Post by hason21 »

I have done research on enabling gzpi compression on asphostportal shared windows hosting and here is the proposed solution:

Code: Select all

<system.webServer>
    <validation validateIntegratedModeConfiguration="false"/>
    <modules runAllManagedModulesForAllRequests="true"/>

    <httpCompression directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files">
      <scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll"/>
      <dynamicTypes>
        <add mimeType="text/*" enabled="true"/>
        <add mimeType="message/*" 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="*/*" enabled="false"/>
      </staticTypes>
    </httpCompression>
    <urlCompression doStaticCompression="true" doDynamicCompression="true"/>

  </system.webServer>

But this is currently not working and I am not getting http response header, Content-Encoding gzip.

Can someone help me with this? Thanks
Post Reply