3

I've followed the instructions to implement compression of dynamic content in IIS set out in this question.

When I send a request, I cannot see any evidence of the response being gzipped:

enter image description here

Version of IIS is 7.5

Is there anything obvious I should be checking to troubleshoot this?

enter image description here

onefootswill
  • 3,707
  • 6
  • 47
  • 101

1 Answers1

1

It's hard to tell without seeing any settings or the request, but you should probably double-check that you have the correct mime types set up for the file and that your request is sending the correct accept-encoding header. It should resemble:

Accept-Encoding: gzip, deflate
Nick Kuznia
  • 1,698
  • 17
  • 27