<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">That notice is probably for two reasons<div><br></div><div>1. you have to deploy a patch to a css or js file on your production server, you forget to update the .gz version so browsers with different Accept-Encoding: headers see different results</div><div><br></div><div>2. I have noticed that nginx uses the last-modified timestamp of the .gz file if it delivers that file, this may or may not be a problem in your setup.</div><div><br></div><div><div>indy:~ dave$ curl -I <a href="http://www.redbubble.com/javascripts/prototype.js">http://www.redbubble.com/javascripts/prototype.js</a></div><div>HTTP/1.1 200 OK</div><div>Server: nginx</div><div>Date: Mon, 14 Apr 2008 07:57:43 GMT</div><div>Content-Type: application/x-javascript</div><div>Content-Length: 75865</div><div>Last-Modified: Thu, 10 Apr 2008 02:26:50 GMT</div><div>Connection: keep-alive</div><div>Cache-Control: public,max-age=7776000</div><div>Accept-Ranges: bytes</div><div><br></div><div>indy:~ dave$ curl -I --compress <a href="http://www.redbubble.com/javascripts/prototype.js">http://www.redbubble.com/javascripts/prototype.js</a></div><div>HTTP/1.1 200 OK</div><div>Server: nginx</div><div>Date: Mon, 14 Apr 2008 07:57:48 GMT</div><div>Content-Type: application/x-javascript</div><div>Content-Length: 20603</div><div>Last-Modified: Fri, 11 Apr 2008 22:59:02 GMT</div><div>Connection: keep-alive</div><div>Content-Encoding: gzip</div><div>Cache-Control: public,max-age=7776000</div><div><br></div><div>Cheers</div><div><br></div><div>Dave</div></div><div><br><div><html>On 14/04/2008, at 5:26 PM, mike wrote:</html><br class="Apple-interchange-newline"><blockquote type="cite"><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: -webkit-monospace; font-size: 10px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0; ">gzip_static is what controls the precompression checks right?<br><br>The wiki says this:<br>"You should ensure that the timestamps of the compressed and<br>uncompressed files match."</span></blockquote></div><br></div></body></html>